Skip to content

Instantly share code, notes, and snippets.

@5A5K1A
Last active March 1, 2017 17:41
Show Gist options
  • Save 5A5K1A/f5c8747ccda4d81185f09dce7e7a7c42 to your computer and use it in GitHub Desktop.
Save 5A5K1A/f5c8747ccda4d81185f09dce7e7a7c42 to your computer and use it in GitHub Desktop.
WordPress Change the standard WP 'Enter title here'
<?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