我使用META BOX插件,我创建了复选框,但无法获取复选框的值

时间:2016-05-06 07:44:24

标签: wordpress plugins

add_filter( 'rwmb_meta_boxes', 'your_prefix_meta_boxes' );
function your_prefix_meta_boxes( $meta_boxes ) {
    $meta_boxes[] = array(
        'title'      => __( 'Custom theme 2 Metabox ', 'textdomain' ),
        'post_types' => array('page'),
        'fields'     => array(
            array(
                'id'   => 'htitle',
                'name' => __( 'Home Page Title ', 'textdomain' ),
                'type' => 'text',
            ),
            array(
                'id'      => 'titlecss',
                'name'    => __( 'Title CSS', 'textdomain' ),
                'type'    => 'checkbox',
                'desc' => __( 'CSS For "WELCOME TO"', 'your-prefix' ),
                ), 
            array(
                'id'      => 'titlecss2',
                'name'    => __( 'Title CSS2', 'textdomain' ),
                'type'    => 'checkbox',
                'desc' => __( 'CSS For "Company name"', 'your-prefix' ),
                ),               
        ),
    );
    return $meta_boxes;
}

帮助获取复选框值我得到了像这样的文本框的值

<?php echo rwmb_meta( 'htitle' ); ?>

但我无法获取复选框的值请帮助

1 个答案:

答案 0 :(得分:0)

<?php echo rwmb_meta( 'titlecss' ); ?

我通过使用复选框的ID

得到它