Last active
August 29, 2015 14:00
Revisions
-
r-sal renamed this gist
Apr 23, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
r-sal revised this gist
Apr 23, 2014 . 2 changed files with 18 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ http://codex.wordpress.org/Theme_Features http://codex.wordpress.org/Template_Tags **roots-dev / functions.php** - if it is present in the theme you are using, it is automatically loaded during WordPress initialization (both for admin pages and external pages) http://codex.wordpress.org/Function_Reference/bloginfo bloginfo( $show ); ```php // Displays your blog's title <h1><?php bloginfo('name'); ?></h1> // Displays the tagline of your blog as set in Settings > General. <p><?php bloginfo('description'); ?> </p> ``` 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 charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,8 @@ # WordPress Dev Notes print stylesheet http://make.wordpress.org/core/handbook/coding-standards/css/ http://wordpress.org/themes/tag-filter/ - tags availalbe for style.css ## [WordPress Codex](http://codex.wordpress.org/Main_Page) -
r-sal revised this gist
Apr 22, 2014 . 1 changed file with 12 additions and 11 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -30,20 +30,21 @@ http://www.chipbennett.net/themes/template-hierarchy/ [Taxonomies](http://codex.wordpress.org/Taxonomies) - Creating new types of taxonomies other than the built-in ones. #### API's * [Quicktags API](http://codex.wordpress.org/Quicktags_API) * [Shortcode API](http://codex.wordpress.org/Shortcode_API) * [Options API](http://codex.wordpress.org/Options_API) - Details about the generic option storage system. * [Rewrite API](http://codex.wordpress.org/Rewrite_API) - Details about the URL rewriting API. * [Settings API](http://codex.wordpress.org/Settings_API) - A reference with examples for adding new settings to existing settings screens. * [Dashboard Widgets API](http://codex.wordpress.org/Dashboard_Widgets_API) - A reference with examples for adding new widgets to the admin dashboard. ## Articles * [Modifying Admin Post Lists In WordPress](http://www.smashingmagazine.com/2013/12/05/modifying-admin-post-lists-in-wordpress-2/) * [Create Native Admin Tables In WordPress The Right Way](http://www.smashingmagazine.com/2011/11/03/native-admin-tables-wordpress/) * [The Complete Guide To Custom Post Types](http://www.smashingmagazine.com/2012/11/08/complete-guide-custom-post-types/) * [Posts Tagged ‘Techniques (WP)’](http://www.smashingmagazine.com/tag/techniques-wp/) * [Tips And Tricks For Testing WordPress Themes](http://www.smashingmagazine.com/2013/05/29/tips-tricks-testing-wordpress-themes/) -
r-sal revised this gist
Apr 22, 2014 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -18,7 +18,6 @@ http://www.chipbennett.net/themes/template-hierarchy/ ### [Advanced Topics](http://codex.wordpress.org/Advanced_Topics) [Administration Menus](http://codex.wordpress.org/Administration_Menus) **Misc.** -
r-sal revised this gist
Apr 22, 2014 . 1 changed file with 28 additions and 11 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,33 +1,50 @@ # WordPress Dev Notes ## [WordPress Codex](http://codex.wordpress.org/Main_Page) ### [Templates](http://codex.wordpress.org/Templates) Comprehensive list of resources related to Themes and Templates, how to customize them, and how to create them **General Theme Articles** [Theme Development](http://codex.wordpress.org/Theme_Development) **Template File Articles** [Template Hierarchy](http://codex.wordpress.org/Template_Hierarchy) [The Loop](http://codex.wordpress.org/The_Loop) http://www.chipbennett.net/themes/template-hierarchy/ ### [Advanced Topics](http://codex.wordpress.org/Advanced_Topics) [Administration Menus](http://codex.wordpress.org/Administration_Menus) **Misc.** [Running a Development Copy of WordPress](http://codex.wordpress.org/Running_a_Development_Copy_of_WordPress) ### Developer Documentation [Function Reference](http://codex.wordpress.org/Function_Reference) - Complete PHP function reference for WordPress (version 2.1, with links to previous versions) [Global Variables](http://codex.wordpress.org/Global_Variables)- A list of all global variables created by WordPress [Post Types](http://codex.wordpress.org/Post_Types) - Creating new types of posts other than the posts that display on the main loop. [Taxonomies](http://codex.wordpress.org/Taxonomies) - Creating new types of taxonomies other than the built-in ones. #### API's [Quicktags API](http://codex.wordpress.org/Quicktags_API) [Shortcode API](http://codex.wordpress.org/Shortcode_API) [Options API](http://codex.wordpress.org/Options_API) - Details about the generic option storage system. [Rewrite API](http://codex.wordpress.org/Rewrite_API) - Details about the URL rewriting API. [Settings API](http://codex.wordpress.org/Settings_API) - A reference with examples for adding new settings to existing settings screens. [Dashboard Widgets API](http://codex.wordpress.org/Dashboard_Widgets_API) - A reference with examples for adding new widgets to the admin dashboard. ## Articles [Modifying Admin Post Lists In WordPress](http://www.smashingmagazine.com/2013/12/05/modifying-admin-post-lists-in-wordpress-2/) [Create Native Admin Tables In WordPress The Right Way](http://www.smashingmagazine.com/2011/11/03/native-admin-tables-wordpress/) [The Complete Guide To Custom Post Types](http://www.smashingmagazine.com/2012/11/08/complete-guide-custom-post-types/) [Posts Tagged ‘Techniques (WP)’](http://www.smashingmagazine.com/tag/techniques-wp/) [Tips And Tricks For Testing WordPress Themes](http://www.smashingmagazine.com/2013/05/29/tips-tricks-testing-wordpress-themes/) -
r-sal created this gist
Apr 22, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,33 @@ # WordPress Dev Notes [The Loop](http://codex.wordpress.org/The_Loop) [Running a Development Copy of WordPress](http://codex.wordpress.org/Running_a_Development_Copy_of_WordPress) [Modifying Admin Post Lists In WordPress](http://www.smashingmagazine.com/2013/12/05/modifying-admin-post-lists-in-wordpress-2/) [Create Native Admin Tables In WordPress The Right Way](http://www.smashingmagazine.com/2011/11/03/native-admin-tables-wordpress/) [The Complete Guide To Custom Post Types](http://www.smashingmagazine.com/2012/11/08/complete-guide-custom-post-types/) [Posts Tagged ‘Techniques (WP)’](http://www.smashingmagazine.com/tag/techniques-wp/) [Tips And Tricks For Testing WordPress Themes](http://www.smashingmagazine.com/2013/05/29/tips-tricks-testing-wordpress-themes/) [Advanced Topics](http://codex.wordpress.org/Advanced_Topics) - [Templates](http://codex.wordpress.org/Templates) - Comprehensive list of resources related to Themes and Templates, how to customize them, and how to create them [Administration Menus](http://codex.wordpress.org/Administration_Menus) # Developer Documentation [Function Reference](http://codex.wordpress.org/Function_Reference) - Complete PHP function reference for WordPress (version 2.1, with links to previous versions) [Global Variables](http://codex.wordpress.org/Global_Variables)- A list of all global variables created by WordPress [Post Types](http://codex.wordpress.org/Post_Types) - Creating new types of posts other than the posts that display on the main loop. [Taxonomies](http://codex.wordpress.org/Taxonomies) - Creating new types of taxonomies other than the built-in ones. ### API's [Quicktags API](http://codex.wordpress.org/Quicktags_API) [Shortcode API](http://codex.wordpress.org/Shortcode_API) [Options API](http://codex.wordpress.org/Options_API) - Details about the generic option storage system. [Rewrite API](http://codex.wordpress.org/Rewrite_API) - Details about the URL rewriting API. [Settings API](http://codex.wordpress.org/Settings_API) - A reference with examples for adding new settings to existing settings screens. [Dashboard Widgets API](http://codex.wordpress.org/Dashboard_Widgets_API) - A reference with examples for adding new widgets to the admin dashboard.