Skip to content

Instantly share code, notes, and snippets.

@maxkostinevich
Created December 29, 2015 19:14
Show Gist options
  • Save maxkostinevich/2970edefebaf593e299c to your computer and use it in GitHub Desktop.
Save maxkostinevich/2970edefebaf593e299c to your computer and use it in GitHub Desktop.
WP-Admin: Change post title placeholder
<?php
add_filter( 'enter_title_here', 'my_filter' );
function my_filter( $title ){
$screen = get_current_screen();
if ( 'invoice' == $screen->post_type ){
$title = 'Your placeholder here';
}
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment