Tema ayarlarında olması gerek ama yoksa, aşağıdaki kodları function dosyasına ekleyin:
function wordpress_hide_feature_image( $html, $post_id, $post_image_id )
{
return is_single() ? '' : $html;
}
add_filter( 'post_thumbnail_html', 'wordpress_hide_feature_image', 10, 3);
Tema panelinde varmış hocam çok teşekkür ederim