Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ahmedmusawir/f15bb974017eec1d348ef8cd1da962af to your computer and use it in GitHub Desktop.

Select an option

Save ahmedmusawir/f15bb974017eec1d348ef8cd1da962af to your computer and use it in GitHub Desktop.
PLUGIN-DEV - QUICK WP ADMIN MENU PAGE & SUBPAGES
// 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