fooplugins/Foo_Plugin_Base

repeatable fields

bradvin opened this issue · 1 comments

repeatable fields
            $settings[] = array(
                'id'      => 'repeatable_field',
                'title'   => __( 'Repeat Me!', 'slug' ),
                'desc'    => __( 'Some repeat desc', 'slug' ),
                'type'    => 'repeatable',
                'tab'     => 'advanced',
                'fields'    => array(
                    array(
                        'id'      => 'some_text',
                        'title'   => __( 'Some text', 'slug' ),
                        'type'    => 'text'
                    ),
                    array(
                        'id'      => 'some_check',
                        'title'   => __( 'Some checkbox', 'slug' ),
                        'type'    => 'checkbox'
                    ),
                )
            );