Skip to content

Instantly share code, notes, and snippets.

@spencejs
Created March 22, 2013 04:44
Show Gist options
  • Select an option

  • Save spencejs/5218983 to your computer and use it in GitHub Desktop.

Select an option

Save spencejs/5218983 to your computer and use it in GitHub Desktop.
Custom Title Field Text By Post Type In Wordpress
//Change Title By Post Type
function custom_title_text( $title ){
$screen = get_current_screen();
if ( 'issues' == $screen->post_type ) {
$title = 'Issue Months and Year e.g. "Jul/Aug 2011"';
}
return $title;
}
add_filter( 'enter_title_here', 'custom_title_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment