Skip to content

Instantly share code, notes, and snippets.

@matthijs166
Last active September 22, 2017 14:56
Show Gist options
  • Save matthijs166/cec53cc42b61678d4caafaec159db5aa to your computer and use it in GitHub Desktop.
Save matthijs166/cec53cc42b61678d4caafaec159db5aa to your computer and use it in GitHub Desktop.
//add option page
if( function_exists('acf_add_options_page') ) {
acf_add_options_page(array(
'page_title' => 'Theme General Settings',
'menu_title' => 'Theme Settings',
'menu_slug' => 'theme-general-settings',
'capability' => 'edit_posts',
'redirect' => false
));
acf_add_options_sub_page(array(
'page_title' => 'Theme Footer Settings',
'menu_title' => 'Footer',
'parent_slug' => 'theme-general-settings',
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment