我正在使用Redux Framework在wordpress中创建主题选项,并且需要增加幻灯片数量的限制。我检查了设置限制的选项,但没有找到任何限制。
我有一个按钮设置字段,可以选择显示列数。如果用户选择3张幻灯片,则用户添加的幻灯片将不超过3张;如果选择4张,则他添加的幻灯片不应超过4张。
这是选项集代码:
Redux::setSection( $opt_name, array(
'title' => __( 'Section Features', 'option-framework' ),
'id' => 'section-features',
'desc' => __( 'For full documentation on this field, visit: ', 'option-framework' ),
'subsection' => true,
'fields' => array(
array(
'id' => 'features-columns',
'type' => 'button_set',
'title' => __( 'No. of columns', 'option-framework' ),
//Must provide key => value pairs for radio options
'options' => array(
'3' => '3 column',
'4' => '4 column'
),
'default' => '3'
),
array(
'id' => 'features-list',
'type' => 'slides',
'title' => __( 'Features', 'option-framework' ),
'subtitle' => __( 'Add features with drag and drop sortings.', 'option-framework' ),
'placeholder' => array(
'title' => __( 'Title Text', 'option-framework' ),
'description' => __( 'Sub Title Text', 'option-framework' ),
'url' => __( 'Url to link this feature', 'option-framework' ),
),
)
)
));
谁能建议我实现这一目标的正确方法。
谢谢。