Skip to content

Instantly share code, notes, and snippets.

@infurno
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save infurno/9855910 to your computer and use it in GitHub Desktop.

Select an option

Save infurno/9855910 to your computer and use it in GitHub Desktop.
WordPress Snippets for Atom Text Editor
# Simple WordPress Snippets
# for Atom Text Editor
# [email protected]
# robotsfollow.com/snippets
'.text.php':
'wp footer':
'prefix': 'wpfoot'
'body': '<?php wp_footer(); ?>'
'wp header':
'prefix': 'wphead'
'body': '<?php wp_head(); ?>'
'wp title':
'prefix': 'wptitle'
'body': '<title><?php wp_title(\'|\', true, \'right\');?></title>'
'WP Copyright':
'prefix': 'wpcopy'
'body': "&copy; <?php echo date('Y');?> <?php bloginfo('title');?> All Rights Reserved"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment