Skip to content

Instantly share code, notes, and snippets.

@tacensi
Created January 16, 2015 16:46
Show Gist options
  • Save tacensi/6fced25032a882e8101e to your computer and use it in GitHub Desktop.
Save tacensi/6fced25032a882e8101e to your computer and use it in GitHub Desktop.
ACF Option Menu and subpages
// Options pages
function my_acf_options_page_settings( $settings ){
$settings['title'] = 'Opções';
$settings['pages'] = array( 'Subpágina 1', 'Subpágina 3', 'Subpágina 2' );
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