更现代的方法是使用remove_post_type_support(post_type, \'thumbnail\')
.
Option #1: 创建自定义帖子类型后立即将其删除:
$args = []; //your args here
register_post_type(\'my_post_type\', $args);
remove_post_type_support(\'my_post_type\', \'thumbnail\');
Option #2: 将其从现有帖子类型中删除:
function remove_thumbnail_support()
{
remove_post_type_support(\'my_post_type\', \'thumbnail\');
}
add_action(\'init\', \'remove_thumbnail_support\', 11);