Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save salmanbd96/f4084205423d7a9229fd to your computer and use it in GitHub Desktop.
Save salmanbd96/f4084205423d7a9229fd to your computer and use it in GitHub Desktop.
When adding a featured image to a template, you may want to add a
class to the image tag that is being generated. This extra class will allow you to use CSS to format it better.
if ( has_post_thumbnail() ) {
the_post_thumbnail('medium', array('class' => 'alignleft'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment