我正在创建自定义图像滑块,
在register\\u post\\u type()->中,我使用:supports=“title,thumbnail”;
我在支持中只使用了两个东西,“标题,缩略图”
但发布缩略图的默认位置在“发布”选项卡下。
它看起来很难看,我想在标题字段下显示特征图像。在编辑器显示的位置,我想在该位置显示我的特征图像。
请告诉我这怎么可能?
$args = array(
\'labels\' => $labels,
\'description\' => __( \'Description.\', \'textdomain\' ),
\'public\' => true,
\'publicly_queryable\' => true,
\'show_ui\' => true,
\'show_in_menu\' => true,
\'query_var\' => true,
\'rewrite\' => array( \'slug\' => \'slider\' ),
\'capability_type\' => \'post\',
\'has_archive\' => true,
\'hierarchical\' => false,
\'menu_position\' => null,
\'supports\' => array( \'title\',\'thumbnail\')
);
register_post_type( \'slider\', $args );
IN case of not possible:
如果这不可能,请告诉我:当我们第一次打开任何post\\u类型的页面时,wordpress显示2列,左侧显示标题、编辑器、评论或右侧显示发布/缩略图/类别等
是否有显示默认列的选项?所以所有的东西都显示在一边。。
SO网友:WorkshopforWeb
派对迟到了,但是。。。
如果您想在管理区域的帖子标题下显示您的特色图片,请在函数中使用这段代码。php:
add_action(\'do_meta_boxes\', \'my_cpt_move_meta_box\');
function my_cpt_move_meta_box(){
remove_meta_box( \'postimagediv\', \'post_type\', \'side\' );
add_meta_box(\'postimagediv\', __(\'custom name\'), \'post_thumbnail_meta_box\', \'post_type\', \'normal\', \'high\');
}
确保更改
post_type
给你rcustom post type slug。此外,您可以为该图像添加自定义名称(而不是“特色图像”)