Created
May 27, 2014 11:14
-
-
Save tjhole/95401bde9ab2c2fb64d3 to your computer and use it in GitHub Desktop.
ACF: Options Sub Pages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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