Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Scordavis/39db618f4bf4f1e7f8746118f0c19f59 to your computer and use it in GitHub Desktop.
Save Scordavis/39db618f4bf4f1e7f8746118f0c19f59 to your computer and use it in GitHub Desktop.
wordpress, php
//remove class from the_post_thumbnail
function the_post_thumbnail_remove_class($output) {
$output = preg_replace('/class=".*?"/', '', $output);
return $output;
}
add_filter('post_thumbnail_html', 'the_post_thumbnail_remove_class');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment