Last active
August 29, 2015 13:57
-
-
Save infurno/9855910 to your computer and use it in GitHub Desktop.
WordPress Snippets for Atom Text Editor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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': "© <?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