Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save marisqaporter/e454af18d77249092b04 to your computer and use it in GitHub Desktop.
Save marisqaporter/e454af18d77249092b04 to your computer and use it in GitHub Desktop.
Change Entry Title of Custom Post Type in WordPress
/*change entry title of custom post type */
function change_default_title( $title ){
$screen = get_current_screen();
if ( $screen->post_type == 'faq' ) {
return 'Question';
}
}
add_filter( 'enter_title_here', 'change_default_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment