Created
May 9, 2022 22:02
-
-
Save leonardop21/2b212f3c38df65c1642fb1363a9f8ca1 to your computer and use it in GitHub Desktop.
Lista de menu do Wodpress admin
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
| Insira na functions do tema, exibe arrays referente aos menus do admin, na posição [2] fica a role, pode ser usada para ocultar um menu no admin | |
| <?php | |
| add_action( 'admin_init', 'wpse_136058_debug_admin_menu' ); | |
| function wpse_136058_debug_admin_menu() { | |
| echo '<pre>' . print_r( $GLOBALS[ 'menu' ], TRUE) . '</pre>'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment