我想我知道了。类型编号绝对有效,不允许文本输入。它还包括供用户使用的小箭头计数器。您可以添加最小-最大属性。有人告诉我这是否有任何错误,尤其是卫生处理。
$wp_customize->add_setting( \'posts_number_home\' , array(
\'default\' => \'10\',
\'transport\' => \'refresh\',
\'sanitize_callback\' => \'sanitize_text_field\',
) );
$wp_customize->add_control( new WP_Customize_Control(
$wp_customize,
\'posts_number_home\',
array(
\'label\' => __( \'Number of posts to display on homepage\', \'mytheme\' ),
\'section\' => \'mytheme_options\',
\'settings\' => \'posts_number_home\',
\'type\' => \'number\',
\'priority\' => 10,
\'input_attrs\' => array(
\'min\' => 1,
\'max\' => 10,)
)
));