Replace Enter Title Here Text for Custom Post Types

Use the below code snippet to change the default ‘Enter the Title Here’ placeholder on the add new post screen for custom post types

function hex_change_default_title( $title ){
    $screen = get_current_screen();
    if ( 'custom_post_type_slug' == $screen->post_type ){
        $title = 'Enter New Placeholder text';
    }
    return $title;
}
add_filter( 'enter_title_here', 'hex_change_default_title' );
Facebook
WhatsApp
Twitter
LinkedIn
Pinterest

Leave a Comment

Your email address will not be published. Required fields are marked *

About Author
Willaim Wright

Voluptas feugiat illo occaecat egestas modi tempora facilis, quisquam ultrices.

Scroll to Top