特色图片框没有显示在我的自定义帖子类型的WP管理区域内(在普通帖子中是这样)。
我已经做过的事情:add the theme support 在行动挂钩内after_setup_theme
// Register Theme Features
function custom_theme_features() {
// Add theme support for Post Formats
add_theme_support( \'post-formats\', array( \'video\' ) );
// Add theme support for Featured Images
add_theme_support( \'post-thumbnails\' );
add_theme_support( \'post-thumbnails\', array( \'customposttypename\' ) );
// Set custom thumbnail dimensions
// set_post_thumbnail_size( 300, 300, true );
// Add theme support for HTML5 Semantic Markup
add_theme_support( \'html5\', array( \'search-form\', \'comment-form\', \'comment-list\', \'gallery\', \'caption\' ) );
// Add theme support for document Title tag
add_theme_support( \'title-tag\' );
}
add_action( \'after_setup_theme\', \'custom_theme_features\' );
在
register_post_type
我添加到
supports
这个
thumbnail
价值
像这样:
function mp_cpt_mycustomposttype() {
$labels = array(
\'name\' => \'TheName\',
\'...\'
);
$args = array(
\'label\' => \'TheName\',
\'description\' => \'TheNamePlural\',
\'labels\' => $labels,
\'supports\' => array( \'title\', \'editor\', \'excerpt\', \'thumbnail\', \'custom-fields\', ),
\'hierarchical\' => false,
\'public\' => true,
\'show_ui\' => true,
\'show_in_menu\' => true,
\'menu_position\' => 5,
\'show_in_admin_bar\' => true,
\'show_in_nav_menus\' => false,
\'can_export\' => true,
\'has_archive\' => false,
\'exclude_from_search\' => false,
\'publicly_queryable\' => true,
\'capability_type\' => \'page\',
);
register_post_type( \'customposttypename\', $args );
}
add_action( \'init\', \'mp_cpt_mycustomposttype\', 0 );
BUT 在我的自定义帖子类型中,特色图片框仍然不会显示。当然,我反复检查显示选项:
(毫不奇怪)默认帖子类型中的特色图片框
post
在那里。
也许对你来说有一些重要的信息:我的装置是本地的,由网格和基岩制成。不知道是否有影响。已尝试停用mu-plugins
- 没有任何成功。
这些小盒子我到底错过了什么?!把我逼疯了。。。
非常感谢您的帮助!