Change The Enter Title Text For Custom Post Types

Arun - 15/06/2020 5:42 PM

Files 1

functions.php
php
<?php

function change_default_title( $title ){
     $screen = get_current_screen();

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

add_filter( 'enter_title_here', 'change_default_title' );


//To change the title on normal default Wordpress posts we can use the same function as above but can remove the check of the post type.

function title_text( $title ){
     return $title = 'Enter new title';
}
add_filter( 'enter_title_here', 'title_text' );