Site logo

Archived topic

Hide the featured image in the archive page

3 replies · Started by Royal Rangers on December 19, 2021

Viewing posts 1–4 of 4

Hi, how I can hide the featured image of the posts in the archive page for post format image or video?

Hi there,

Try this PHP snippet:

add_filter( 'generate_featured_image_output', function( $output ){
	if( ( is_archive() || is_home() ) && has_post_format( array( 'video', 'image' ), get_the_ID() ) ){
		return;
	}
	return $output;
});

It looks like it works. Thank you

No problem. :D

This archived topic is closed to new replies.