How to set featured image on single posts based on category?
-
I’m using this code to display featured image on my posts.
<?php if (has_post_thumbnail( $post->ID ) ): ?> <?php $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' ); ?> <div id="custom_bg"> <img src="<?php echo $image[0]; ?>" /> </div> <?php endif; ?>
But the featured images are shown on all posts, which is great. But i’m wondering if i can only display this code on posts based on their category?
Any ideas?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How to set featured image on single posts based on category?’ is closed to new replies.