Created
April 27, 2015 10:12
-
-
Save verytwisty/689a923bec470231a921 to your computer and use it in GitHub Desktop.
Filter to change the HTML around a featured image.
This file contains hidden or 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
| function custom_post_thumbnail_html( $html ) { | |
| $html = '<div class="featured-image">' . $html . '</div>'; | |
| return $html; | |
| } | |
| add_filter( 'post_thumbnail_html', 'custom_post_thumbnail_html' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment