apply_filters( 'enter_title_here', string $text , WP_Post $post )
Filters the title field placeholder text.
Parameters
-
$text
string -
Placeholder text. Default 'Add title'.
-
$post
WP_Post -
Post object.
Source
File: wp-admin/edit-form-advanced.php
.
View all references
$title_placeholder = apply_filters( 'enter_title_here', __( 'Add title' ), $post );
Changelog
Version | Description |
---|---|
3.1.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
This filter is used to change the placeholder text of the Title field whether you are using the Classic Editor version or Gutenberg version. This works in both cases. This is really useful when you are creating a Custom Post Type (CPT).
Let’s say you have a CPT called
testimonials
to add client testimonials in your site. But when you make the CPT the title field place holder will say “Enter title” instead maybe you wanna show “Enter Client Name” there. so you can do the following: