Created
August 17, 2016 22:27
-
-
Save marcbacon/f755a66b02afcdff1badf15f99d05622 to your computer and use it in GitHub Desktop.
Add instructions to the featured image metabox in the post editor.
This file contains 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
// Add text to featured image meta box | |
add_filter( 'admin_post_thumbnail_html', 'mytheme_featured_image_instruction'); | |
function mytheme_featured_image_instruction( $content ) { | |
return $content .= '<p>Optimal size is 1410 x 260 pixels.</p>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment