Advertisement
UrbanAggie

Custom Text Plugin Submenu Page

May 2nd, 2012
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. //  Add this plugin to the Admin Navigation Menu ( register the function )
  2.     add_action('admin_menu', 'register_my_plugin_submenu_page');   
  3.  
  4.  
  5. //  Create a function that contains the admin menu-building code
  6. //  This adds the plugin to the Admin Navigation Menu
  7.     function register_my_plugin_submenu_page() {
  8.     // Create Plugins submenu item
  9.         add_submenu_page(
  10.             'plugins.php',
  11.             'TnT Custom Text Configuration',
  12.             'TnT Custom Text',
  13.             'manage_options',
  14.             'tnt-custom-text',
  15.             'create_the_admin_html_output');
  16.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement