Skip to content

Instantly share code, notes, and snippets.

@thierrypigot
Created July 22, 2015 11:27
Show Gist options
  • Save thierrypigot/b739dc32785626056e47 to your computer and use it in GitHub Desktop.
Save thierrypigot/b739dc32785626056e47 to your computer and use it in GitHub Desktop.
Ajoute des sous pages à la page d'options ACF
<?php
if( function_exists( 'acf_add_options_page' ) )
{
acf_add_options_page();
acf_add_options_sub_page( 'Subpage 1 name' );
acf_add_options_sub_page( 'Subpage 2 name' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment