Skip to content

Instantly share code, notes, and snippets.

@mustardBees
Created November 22, 2012 14:01
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 mustardBees/4131320 to your computer and use it in GitHub Desktop.
Save mustardBees/4131320 to your computer and use it in GitHub Desktop.
Override post thumbnail attributes in your WordPress theme
$post_thumbnail_attributes = array(
'class' => 'our-image-class maybe-add-another-class',
'alt' => get_the_title(),
'title' => get_the_title()
);
the_post_thumbnail( 'post-thumbnail', $post_thumbnail_attributes );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment