Skip to content

Instantly share code, notes, and snippets.

@tjhole
Created May 27, 2014 11:14
Show Gist options
  • Save tjhole/95401bde9ab2c2fb64d3 to your computer and use it in GitHub Desktop.
Save tjhole/95401bde9ab2c2fb64d3 to your computer and use it in GitHub Desktop.
ACF: Options Sub Pages
function my_acf_options_page_settings( $settings )
{
$settings['title'] = 'Global';
$settings['pages'] = array('Header', 'Sidebar', 'Footer');
return $settings;
}
add_filter('acf/options_page/settings', 'my_acf_options_page_settings');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment