How to show featured image in some posts but not all

I don’t want featured images to show at the top of blog posts, so I’ve previously added code to my site to prevent them from showing.

However, every once in a while I’d like to use the featured image to show. Is there a way to select it to show only on a handful of posts.

Example post here: http://britneygardner.com/what-does-a-photo-session-look-like/

I want the video to show, but it’s not showing up.

Hello @britneygardner,

Thanks for posting in!

In hiding your featured images, you used this custom css:

.single-post .entry-featured {
    display: none;
}

If you selectively want to display the videos but not the featured images, I would recommend that you update your code and use this instead:

.single-post .entry-featured {
    display: none;
}

.single-post .format-video .entry-featured {
    display: block;
} 

.single-format-video .x-main.full .hentry .entry-featured {
    margin-top: 55px;
}

We would love to know if this has worked for you. Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.