Samples
Create an options page with 2 tabs
function add_custom_options_pages( $pages ) {
$myPages = array(
array(
'id' => 'my-options-page',
'name' => 'My options page',
'tabs' => array(
array(
'id' => 'main',
'name' => 'Main',
),
array(
'id' => 'inner',
'name' => 'Inner',
),
),
),
);
return array_merge( $pages, $myPages );
}
add_filter( 'alch_options_pages', 'add_custom_options_pages' );Simple text field
With a repeater field in one of two tabs
Network options
Last updated