Forked from isGabe/wp_custom_title_placeholder_text.php
Last active
January 6, 2018 01:47
-
-
Save timothyjensen/f3830cbd997acd11722d29eaa8c93171 to your computer and use it in GitHub Desktop.
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
<?php | |
add_filter( 'enter_title_here', function( $title ) { | |
$screen = get_current_screen(); | |
if ( 'your_custom_post_type' == $screen->post_type ){ | |
$title = 'Your custom placeholder text'; | |
} | |
return $title; | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment