Skip to content

Instantly share code, notes, and snippets.

@Antoinebr
Forked from hofmannsven/README.md
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Antoinebr/a53eb16f7fc1ec1e5ab6 to your computer and use it in GitHub Desktop.
Save Antoinebr/a53eb16f7fc1ec1e5ab6 to your computer and use it in GitHub Desktop.
<?php
add_action( 'admin_menu', 'register_my_custom_menu_page' );
function register_my_custom_menu_page() {
// add_menu_page( $page_title, $menu_title, $capability, $menu_slug, $function, $icon_url, $position );
add_menu_page( 'Custom Menu Page Title', 'Custom Menu Page', 'manage_options', 'custom.php', '', 'dashicons-awards', 90 );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment