Last active
March 1, 2017 17:41
-
-
Save 5A5K1A/f5c8747ccda4d81185f09dce7e7a7c42 to your computer and use it in GitHub Desktop.
WordPress Change the standard WP 'Enter title here'
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 | |
add_filter( 'enter_title_here', function( $title ) { | |
if( get_post_type() == 'page' ) { | |
$title = __('Vul een paginatitel in', 'domain'); | |
} elseif( get_post_type() == 'post' ) { | |
$title = __('Vul een korte en bondige titel in', 'domain'); | |
} | |
return $title; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment