Skip to content

Instantly share code, notes, and snippets.

@Falcornus
Created July 15, 2016 17:24
Show Gist options
  • Save Falcornus/b05545a8d95c81887bafdb6678864208 to your computer and use it in GitHub Desktop.
Save Falcornus/b05545a8d95c81887bafdb6678864208 to your computer and use it in GitHub Desktop.
the_post_thumbnail() without size
add_filter( 'post_thumbnail_html', 'remove_thumbnail_dimensions', 10, 3 );
function remove_thumbnail_dimensions( $html, $post_id, $post_image_id ) {
$html = preg_replace( '/(width|height)=\"\d*\"\s/', "", $html );
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment