Skip to content

Instantly share code, notes, and snippets.

@4gray
Forked from iwek/plugin_admin_page_function.php
Last active August 29, 2015 14:17
Show Gist options
  • Save 4gray/7d02575fe5a0cbed8e1d to your computer and use it in GitHub Desktop.
Save 4gray/7d02575fe5a0cbed8e1d to your computer and use it in GitHub Desktop.
<?php
add_action('admin_menu', 'plugin_admin_add_page');
function plugin_admin_add_page() {
add_options_page('Custom Plugin Page', 'Custom Plugin Options Page', 'manage_options', 'page_slug', 'plugin_options_page'); //settings menu page
}
function plugin_options_page() {
//HTML and PHP for Plugin Admin Page
echo "<h2>The Custom Plugin Options Page</h2>";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment