Forked from isGabe/wp_custom_title_placeholder_text.php
Last active
May 18, 2018 15:42
-
-
Save besrabasant/7ee8e4e8ac9e8d229727 to your computer and use it in GitHub Desktop.
WordPress: Custom placeholder text for custom post type title input box #snippet #WordPress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
replacing the default "Enter title here" placeholder text in the title input box | |
with something more descriptive can be helpful for custom post types | |
place this code in your theme's functions.php or relevant file | |
source: http://flashingcursor.com/wordpress/change-the-enter-title-here-text-in-wordpress-963 | |
*/ | |
function wpfstop_change_default_title( $title ){ | |
$screen = get_current_screen(); | |
if ( 'your_custom_post_type' == $screen->post_type ){ | |
$title = 'Your custom placeholder text'; | |
} | |
return $title; | |
} | |
add_filter( 'enter_title_here', 'wpfstop_change_default_title' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment