如何在wordpress cmb2中输入数字类型输入字段?

时间:2016-10-21 18:44:50

标签: wordpress wordpress-theming

如何在wordpress cmb2中输入数字类型输入字段?我想要数字类型输入字段并设置默认值。

        $cmb->add_field( array(
        'name'    => __( 'Number Title', 'myprefix' ),
        'desc'    => __( 'field description (optional)', 'myprefix' ),
        'id'      => 'number-id',
        'type'    => '',
        'default' => '30',
    ) );

1 个答案:

答案 0 :(得分:1)

试试这个

$cmb->add_field( array(
    'name' => 'Standard Number Field',
    'description' => 'Number Field',
    'id'   => $prefix.'test_number',
    'type' => 'text',
    'attributes' => array(
        'type' => 'number',
    ),
    ) );
相关问题