Skip to content

Instantly share code, notes, and snippets.

@elshahat
Created July 15, 2020 09:22
Show Gist options
  • Save elshahat/e5f9ecb5c66d7ead91b263c9ca222107 to your computer and use it in GitHub Desktop.
Save elshahat/e5f9ecb5c66d7ead91b263c9ca222107 to your computer and use it in GitHub Desktop.
add_action('admin_menu', 'custom_menu');
function custom_menu(){
add_menu_page('Custom Menu', 'Custom Menu', 'manage_options', 'custom-menu-slug', 'custom_menu_page_display');
}
function custom_menu_page_display(){
echo '<h1>Hello World</h1>';
echo '<p>This is a custom page</p>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment