WordPress has functionality of create custom post type. By default wordpress shows “Enter Title Here” for every post type. Basically every content type is custom post in wordpress. When you create new post you will able to see this placeholder text.
For custom post type we need to add Change ‘Enter Title Here’ Text for custom wordpress post. Many times we create custom post type for custom projects. Here in this article we shown you, how to create custom post type and change placeholder text.
When we want to customize custom post
If we are creating product custom type and want to add product description and their photos. For that you cannot use ‘Enter Title Here’ text. You need to give information to admin users with clear directions. So many times with custom post type you need to change placeholder text.
Using Following code You can create custom Post type
You need open functions.php file from your theme files and put following code.
return__( 'Enter Product Name here', 'your_textdomain');
08
09
return$input;
10
}
Change ‘Enter Title Here’ Text for custom wordpress post
Changed Placeholder text will look like as above shown in image. It is very simple and short code. You can change above code as per your project requirement.