Skip to content

Instantly share code, notes, and snippets.

View benpearson's full-sized avatar

Ben Pearson benpearson

  • Melbourne, Australia
View GitHub Profile
@benpearson
benpearson / ACF - Add sub pages to Options page
Last active August 29, 2015 14:04
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' );
}