getdave / Tanlinell

Boilerplate Wordpress theme for rapid development of new WP themes. Based on the great work of the _s ("Underscore") theme.
GNU General Public License v2.0
6 stars 2 forks source link

Create standardised featured image partial #165

Closed getdave closed 11 years ago

getdave commented 11 years ago

We need to create a standardised featured-image / post-thumbnail file to display the featured image.

Should test and apply to single and page content templates.

getdave commented 11 years ago

Example file might be

<?php if ( has_post_thumbnail() ) { ?>
<figure class="post-thumbnail">
    <?php the_post_thumbnail(
        array( 
            'width'         => 662, 
            'height'        => 300, 
            'crop'          => true,
            'jpeg_quality'  => 80,
            'resize'        => true
        )
    );?>
</figure>
<?php } ?>