Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nathaningram/b52144c6bf31581ec333 to your computer and use it in GitHub Desktop.

Select an option

Save nathaningram/b52144c6bf31581ec333 to your computer and use it in GitHub Desktop.
// 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