Archived topic
Function to remove featured image on archive ?
2 replies · Started by Fabien on July 22, 2020
Viewing posts 1–3 of 3
Hi,
Is there a php function to remove the featured image on an archive page ?
Thanks !
Nevermind, I've found it :
add_filter( 'option_generate_blog_settings', function( $options ) {
if ( is_post_type_archive( '$post-type' ) ) {
$options['post_image'] = false;
}
return $options;
} );
Glad you were able to figure out.
This archived topic is closed to new replies.