Skip to content

Instantly share code, notes, and snippets.

@alexgraham
Created January 12, 2015 15:46
Show Gist options
  • Save alexgraham/1122c6a4442760cdd207 to your computer and use it in GitHub Desktop.
Save alexgraham/1122c6a4442760cdd207 to your computer and use it in GitHub Desktop.
Advanced Custom Fields - Theme options register and sub-pages
/*
* Register Theme Option pages
*/
if( function_exists('acf_add_options_page') ) {
acf_add_options_page(array(
'page_title' => 'Theme Options',
'menu_title' => 'Theme Options',
'menu_slug' => 'theme-options',
'capability' => 'edit_posts',
'redirect' => false
));
acf_add_options_sub_page(array(
'page_title' => 'Contact Details',
'parent_slug' => 'theme-options'
));
acf_add_options_sub_page(array(
'page_title' => 'Blog Options',
'parent_slug' => 'theme-options'
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment