Skip to content

Instantly share code, notes, and snippets.

@benpearson
Last active August 29, 2015 14:04
Show Gist options
  • Save benpearson/b29caf966bcd4460e6c9 to your computer and use it in GitHub Desktop.
Save benpearson/b29caf966bcd4460e6c9 to your computer and use it in GitHub Desktop.
ACF - Add sub pages to Options page
// 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