Created
May 30, 2018 07:05
-
-
Save ahmedmusawir/f15bb974017eec1d348ef8cd1da962af to your computer and use it in GitHub Desktop.
PLUGIN-DEV - QUICK WP ADMIN MENU PAGE & SUBPAGES
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
| // add top-level administrative menu | |
| function moose_add_toplevel_menu() { | |
| add_menu_page( 'Page Title', 'Menu Title', 'manage_options', 'menu_slug', 'page_callback_function', 'dashicons-media-spreadsheet' ); | |
| add_submenu_page( 'menu_slug', 'Page Title 1', 'Sub-menu 1 Title', 'manage_options', 'submenu1_slug', 'page_callback_function1' ); | |
| add_submenu_page( 'menu_slug', 'Page Title 2', 'Sub-menu 2 Title', 'manage_options', 'submenu2_slug', 'page_callback_function2' ); | |
| } | |
| add_action( 'admin_menu', 'moose_add_toplevel_menu' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment