Skip to content

Instantly share code, notes, and snippets.

@kjohnson
Last active April 27, 2017 19:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kjohnson/5fe5c8583093c3d69ca1c351d90ebbbd to your computer and use it in GitHub Desktop.
Save kjohnson/5fe5c8583093c3d69ca1c351d90ebbbd to your computer and use it in GitHub Desktop.
<?php
// ...
'options' = array(
'name' => 'options',
'type' => 'option-repeater',
'label' => __( 'Options' ) . ' <a href="#" class="nf-add-new">' . __( 'Add New' ) . '</a>',
'width' => 'full',
'group' => 'primary',
'columns' => array(
'label' => array(
'column1' => __( 'Column One' ),
'default' => '',
),
),
/* Optional */
'value' => array(
array( 'label' => 'Default Option', 'order' => 0 ),
),
/* Optional */
'tmpl_row' => 'nf-tmpl-custom-repeater-row'
);
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment