govfresh / govpress

The WordPress theme for government
https://wordpress.org/themes/govpress/
GNU General Public License v2.0
135 stars 50 forks source link

Featured Image not coming on posts #95

Closed ghost closed 9 years ago

ghost commented 9 years ago

When we create posts with featured image it is not coming by default but for other themes it works fine. Is there any specific change we need to be done?

Appreciate your advice.

devinsays commented 9 years ago

Hi @rajeshmepco. This theme does not automatically output the featured image. You can insert it directly into the post if you want it to display.

ghost commented 9 years ago

Hi @devinsays Thanks. But we need it in our case. How can We enable it to populate automatically?

devinsays commented 9 years ago

You can create a child theme and add something like this to single.php:

<?php if ( has_post_thumbnail() ) { ?>
<figure class="entry-image">
    <?php the_post_thumbnail(); ?>
</figure>
<?php } ?>