如何在wordpress cmb2中输入数字类型输入字段?我想要数字类型输入字段并设置默认值。
$cmb->add_field( array(
'name' => __( 'Number Title', 'myprefix' ),
'desc' => __( 'field description (optional)', 'myprefix' ),
'id' => 'number-id',
'type' => '',
'default' => '30',
) );
答案 0 :(得分:1)
试试这个
$cmb->add_field( array(
'name' => 'Standard Number Field',
'description' => 'Number Field',
'id' => $prefix.'test_number',
'type' => 'text',
'attributes' => array(
'type' => 'number',
),
) );