Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 25, 2022 17:18
Show Gist options
  • Save wpmu-authors/2083d0fa32aa1b972568d5aa8bf003cb to your computer and use it in GitHub Desktop.
Save wpmu-authors/2083d0fa32aa1b972568d5aa8bf003cb to your computer and use it in GitHub Desktop.
add_action( 'admin_menu', 'my_admin_menu' );
function my_admin_menu() {
add_menu_page( 'My Top Level Menu Example', 'Top Level Menu', 'manage_options', 'myplugin/myplugin-admin-page.php', 'myplguin_admin_page', 'dashicons-tickets', 6 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment