Remove Featured Image based on Date

@Romulus Since you are using WordPress, I would highly suggest using WordPress’ functionality as much as you can. I would recommend using PHP and creating your own plugin or some kind of script that you can run. There are lots of tutorials out there that will give you the bare-bones implementation for creating a simple … Read more

IF statement to filter featured image article

If i understood you correctly, you want the featured image to be displayed or not based on whether it was uploaded or not. If so, the basic code is: <?php if( has_post_thumbnail() ) { ?> <a href=<?php the_permalink(); ?>”><img src=”https://wordpress.stackexchange.com/questions/231934/<?php the_post_thumbnail(); ?>” title=”<?php the_title(); ?>” /></a> <?php } ?> And that displays the image linking … Read more

Featured image doesn’t appear in Blog index

Managed to find an alternative function that correctly calls the featured image set for the Blog index page by using this: <?php get_header(); ?> <?php if ( is_home() && get_option(‘page_for_posts’) ) { echo get_the_post_thumbnail_url( get_option(‘page_for_posts’) ); } ?> Thanks to those for your help