Created
July 22, 2015 11:27
-
-
Save thierrypigot/b739dc32785626056e47 to your computer and use it in GitHub Desktop.
Ajoute des sous pages à la page d'options ACF
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
| <?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