Skip to content

Instantly share code, notes, and snippets.

@nfsarmento
Last active October 30, 2018 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nfsarmento/1b5ab4e1af4f44cd1b3e4c4a41142b91 to your computer and use it in GitHub Desktop.
Save nfsarmento/1b5ab4e1af4f44cd1b3e4c4a41142b91 to your computer and use it in GitHub Desktop.
Add custom text on feature image Custom Post Type
/**
* Add custom text on feature image Custom Post Type
*
* https://www.nuno-sarmento.com
*/
add_action( 'admin_head', 'ns_remove_my_meta_boxen' );
function ns_remove_my_meta_boxen() {
remove_meta_box( 'postimagediv', 'staff', 'side' );
add_meta_box('postimagediv', __('Add staff photo W 750px x H 400px'), 'post_thumbnail_meta_box', 'staff', 'side', 'high');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment