我已经创建了一个自定义帖子类型。在自定义帖子类型上,我希望有一个特色图片。我已经将特色图片添加到我的自定义帖子中,但是当我这样做时,它会删除主文本编辑器(您使用它将副本添加到您的网站)。如果我删除了支持缩略图,它会恢复文本编辑器。
add_action( \'init\', \'create_post_type\' );
function create_post_type() {
register_post_type( \'artist\',
array(
\'labels\' => array(
\'name\' => __( \'Talent\' ),
\'singular_name\' => __( \'talent\' )
),
\'public\' => true,
\'has_archive\' => true,
\'supports\' => array( \'thumbnail\' ),
\'rewrite\' => array(\'slug\' => \'talent\'),
)
);
}
最合适的回答,由SO网友:Gareth Gillman 整理而成
您需要添加所需的每个单独支持,例如。
\'supports\' => array(\'thumbnail\', \'title\', \'editor\'),
默认情况下,标题和编辑器会添加到帖子类型中,但如果添加支持查询,则需要重新定义它们。