Created
June 5, 2017 16:57
-
-
Save whatjackhasmade/3d75e318aa905aa5d55ebd16378fbad7 to your computer and use it in GitHub Desktop.
Include additional pages to wordpress admin dashboard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function register_my_custom_menu_page() { | |
add_menu_page( 'Page Title', 'Menu Title', 'manage_options', '../wp-content/themes/index.html', '', 'dashicons-book', 3 ); | |
} | |
add_action( 'admin_menu', 'register_my_custom_menu_page' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment