Skip to content

Instantly share code, notes, and snippets.

@verytwisty
Created April 27, 2015 10:12
Show Gist options
  • Select an option

  • Save verytwisty/689a923bec470231a921 to your computer and use it in GitHub Desktop.

Select an option

Save verytwisty/689a923bec470231a921 to your computer and use it in GitHub Desktop.
Filter to change the HTML around a featured image.
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