0

Change The Enter Title Text For Custom Post Types

Since discovering WordPress custom post types I’ve always wanted to customise the WordPress dashboard area. Your able to do this to a certain level by using labels on your custom post types. This will change where ever it says posts to the label of your custom post type.

Enter_text_here

But WordPress doesn’t change the default Enter Title Here text, so if you create a new product custom post type then you can change the Enter Title Here to Enter New Product Here.

Add this to your functions.php file to change the Enter Title Here text.

if ( $screen->post_type == ‘product’ ) {
return ‘Enter New Product Here’;
}
}

add_filter( ‘enter_title_here’, ‘change_default_title’ );


 

Leave a reply