Filters the title field placeholder text.
$textstring$postWP_Postwp-admin/edit-form-advanced.php:538file scopewp-admin/edit-form-blocks.php:281file scopewp-admin/includes/dashboard.php:603wp_dashboard_quick_press() * * @since 3.1.0 * * @param string $text Placeholder text. Default 'Add title'. * @param WP_Post $post Post object. */ $title_placeholder = apply_filters( 'enter_title_here', __( 'Add title' ), $post ); ?> <label class="screen-reader-text" id="title-prompt-text" for="title"><?php echo $title_placeholder; ?></label> <input type="text" name="post_title" size="30" value="<?php echo esc_attr( $post->post_title ); ?>" id="title" spellcheck="true" autocomplete="off" /> <?php if ( post_type_supports( $post_type, 'editor' ) ) { ?>Introduced in 3.1.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.