i think i have to clarify it. i don’t want featured image shown on some posts.
i found this on internet, but i dunno where to put it.
<?php if(has_post_thumbnail()) {
echo ‘<figure class=”featured-thumbnail”><span class=”img-wrap”>’; the_post_thumbnail(); echo ‘</span></figure>’;
}
?>
<?php } else { ?>
<?php if(has_post_thumbnail()) {
echo ‘<figure class=”featured-thumbnail large”><span class=”img-wrap”><span class=”f-thumb-wrap”>’; the_post_thumbnail(‘post-thumbnail-xl’); echo ‘</span></span></figure>’;
}
?>
<?php } ?>
anyone can help?