Created
October 29, 2013 20:14
-
-
Save makbeta/7221756 to your computer and use it in GitHub Desktop.
CHANGE THE “ENTER TITLE HERE” TEXT IN 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 | |
function XXX_enter_title_here( $title ){ | |
$screen = get_current_screen(); | |
if ( 'custom_post_type' == $screen->post_type ) { | |
$title = 'Custom Post Type Title Text'; | |
} | |
return $title; | |
} | |
add_filter( 'enter_title_here', 'XXX_enter_title_here' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment