Skip to content

Instantly share code, notes, and snippets.

@antoniofrignani
Created June 4, 2012 09:36
Show Gist options
  • Save antoniofrignani/2867466 to your computer and use it in GitHub Desktop.
Save antoniofrignani/2867466 to your computer and use it in GitHub Desktop.
[WP] - Add HTML to feature image metabox
// http://wpsnipp.com/index.php/functions-php/add-html-to-feature-image-metabox/
add_filter( 'admin_post_thumbnail_html', 'add_featured_image_html');
function add_featured_image_html( $html ) {
return $html .= '<p>This is some sample text that can be displayed within the feature image box.</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment