我希望在有电影模板的帖子中显示cmb2,我使用了以下代码:
$cmb_review = new_cmb2_box( array(
'id' => $prefix . 'metabox',
'title' => __( "My title", 'cmb2' ),
'object_types' => array( 'post'),
'show_on' => array( 'key' => 'page-template', 'value' => 'movie.php' )
));但这并不管用
我也尝试了这段代码,但它不起作用:
function maybe_show($cmb_review ) {
$template = get_post_meta( $cmb_review ->object_id(), 'page-template', true );
if ( 'movie.php' === $template ) {
return true;
}
return false;
}
$cmb_review = new_cmb2_box( array(
'id' => $prefix . 'metabox',
'title' => __( "My title", 'cmb2' ),
'object_types' => array( 'post'),
'show_on_cb' => 'maybe_show'
));发布于 2020-08-20 06:44:48
你的meta box对象类型是post,你的模板页面也是post吗?
确保两个都匹配。
https://stackoverflow.com/questions/61897155
复制相似问题