Hide feature image with internal tag?

Hi there!

Is it possible with code injection to hide the feature image of posts that have an internal tag?

Thanks!

Yes. Probably. Many themes apply tags like tag-hash-yourtag to an outer container. So it might be as simple (once you work out the selectors) as:

.tag-hash-yourtag .your-featured-image-selector {
display:none;}

It worked perfect! Thanks!

1 Like