Created
May 2, 2013 14:51
-
-
Save petenelson/5502745 to your computer and use it in GitHub Desktop.
WordPress - Change custom post type "Enter Title Here" placeholder
This file contains 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
// via http://www.paulund.co.uk/change-the-enter-title-text-for-custom-post-types | |
// just saving it here for later reference | |
function change_default_title( $title ){ | |
$screen = get_current_screen(); | |
if ( $screen->post_type == 'product' ) { | |
return 'Enter New Product Here'; | |
} | |
} | |
add_filter( 'enter_title_here', 'change_default_title' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment