Featured Image id disappeared

时间:2015-11-04 作者:Vipin

“设置特色图像”框未显示在我的“帖子”中。但是,我添加了以下行add_theme_support(\'post-thumbnails\'); 在我的functions.php 因此,有人能让我意识到我的错误吗?

1 个回复
SO网友:Bruno Rodrigues

注册自定义帖子类型时,您必须说明您的CPT接受缩略图:

$post_type = \'vehicles\';
$supports = array( \'title\', \'editor\', \'thumbnail\');

$args = array(
          [...]
          \'supports\' => $supports
      );
register_post_type($post_type, $args);