Monday, March 16, 2015

How To Change “Enter Title Here” Text In WordPress ?



WordPress displays “Enter title here” placeholder text in the title field on the post screen where you create new posts. When we create custom post types, there is no default parameter to change this text. 

here’s a simple snippet which allows you to change “Enter title here” text in WordPress posts screen and custom post types’ screen.
Just drop the following snippet to your current theme’s functions.php file:

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

     if  ( 'movie' == $screen->post_type ) {
          $title = 'Enter movie name with release year';
     }

     return $title;
}

add_filter( 'enter_title_here', 'change_title_text' );

That’s all!

A blogger

I am passionate blogger cum B.Tech. Computer engineering graduate. I love writing blog post. I spend my free time in writing blog post that will useful to everyone (including me). I have had some success making money blogging and want to help others do the same. I just figured that by creating a great and free resource a lot of links would follow – and they have. Some people ask me how they can repay me – which is not necessary - but for those wanting to show their appreciation, I just say linking to the article from their blog is the best compensation I could receive. Thanks for reading!

0 comments:

Post a Comment

Thanks for commenting. I will Reply you soon

 

Copyright @ 2013 PHP WORDPRESS MAGENTO .

Designed by Kcon Technosoft