Skip to content

Instantly share code, notes, and snippets.

@wpmark
Last active December 12, 2019 19:05
Show Gist options
  • Save wpmark/5f300ad2724163c3ef1a to your computer and use it in GitHub Desktop.
Save wpmark/5f300ad2724163c3ef1a to your computer and use it in GitHub Desktop.
Add a WordPress Admin Top Level Menu
<?php
function wpmark_add_toplevel_menu() {
/* add a new menu item */
add_menu_page(
'My Admin Menu', // page title
'My Admin Menu', // menu title
'edit_posts', // capability
'wpmark_admin_menu', // menu slug
'wpmark_admin_menu_content', // callback function
'dashicons-dashboard', // icon
90 // menu position
);
}
add_action( 'admin_menu', 'wpmark_add_toplevel_menu' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment