Last active
August 29, 2015 14:04
-
-
Save benpearson/b29caf966bcd4460e6c9 to your computer and use it in GitHub Desktop.
ACF - Add sub pages to Options page
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
// Place in functions.php | |
/** | |
* Advanced custom fields - add sub pages to Options page | |
*/ | |
if( function_exists('acf_add_options_sub_page') ) | |
{ | |
acf_add_options_sub_page( 'Sidebar' ); | |
acf_add_options_sub_page( 'Footer' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment