Created
August 4, 2015 08:58
-
-
Save salmanbd96/f4084205423d7a9229fd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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