Created
December 28, 2015 02:45
-
-
Save nathaningram/b52144c6bf31581ec333 to your computer and use it in GitHub Desktop.
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
| // Prepopulate Pages and Posts with Default Content | |
| add_filter( 'default_content', 'ni_default_editor_content' ); | |
| function ni_default_editor_content( $content ) { | |
| global $post_type; | |
| switch( $post_type ) | |
| { | |
| case 'post': | |
| $content = 'Default content for blog posts.'; | |
| break; | |
| case 'page': | |
| $content = 'Default content for pages.'; | |
| break; | |
| case 'portfolio': | |
| $content = 'Default content for your portfolio pages.'; | |
| break; | |
| case 'products': | |
| $content = 'Default content for blog posts.'; | |
| break; | |
| } | |
| return $content; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment