我正在使用CMB2's select来提取用户可以在自定义元框中选择的帖子列表。
我在options数组中添加了一个“空白”选项,但我无法弄清楚如何将其作为默认选项(即。<option selected="selected" value="">I'm blank</option>
)。
我需要这样做,所以我可以使用if语句,如果该字段为空,则不显示网站上的输出框。现在,即使用户没有专门选择一个选项,也会传递带有值的选项。
这是元框代码:
$link_post_types = array('charter', 'page');
$meta_boxes['ms_metabox'] = array(
'id' => 'ms_metabox',
'title' => __( 'Page Links', 'cmb2' ),
'object_types' => array( 'page' ),
'context' => 'normal',
'priority' => 'high',
'show_names' => true,
'fields' => array(
array(
'name' => __( 'Page Link', 'cmb2' ),
'desc' => __( 'Choose the page this will link to', 'cmb2' ),
'id' => $prefix . 'page_link',
'type' => 'select',
'options' => ms_get_posttype_options($link_post_types),
),
),
);
function ms_get_posttype_options($argument) {
$get_post_args = array(
'post_type' => $argument,
'posts_per_page' => -1,
'orderby' => 'type',
'order' => ASC
);
$options = array();
foreach ( get_posts( $get_post_args ) as $post ) {
$post_type = get_post_type( $post->ID);
$title = get_the_title( $post->ID );
$permalink = get_permalink( $post->ID);
$options[] = array(
'name' => $title . ' : ' . $post_type,
'value' => $permalink,
);
}
$empty_option[] = array(
'name' => 'Please select an option',
'value' => '',
);
$options = array_merge($empty_option, $options);
return $options;
}
有一个default
参数但是当我尝试在示例中应用它时,它不起作用。
感谢您的帮助!
答案 0 :(得分:1)
我半途而废。我遇到问题的帖子是旧的,在我添加空白选项之前我已经弄乱了值 - 当我创建新帖子时,默认选项是空白的(因为它是合并中的第一个数组)
如果有人有一个更加万无一失的解决方案,我想听听它!
答案 1 :(得分:0)
您可以将以下内容添加到元框字段数组中:
show_option_none' => true