Advertisement
websupporter

WP Create help tab #1

Apr 20th, 2015
517
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. add_action('admin_menu', 'page_with_help');
  2. function page_with_help() {
  3.     global $wp_meta_boxes;
  4.     $page_with_help = add_menu_page(
  5.         __('Page with Help', 'pwh'),
  6.         __('Page with Help', 'phw'),
  7.         'manage_options',
  8.         'pwh',
  9.         'pwh_page'
  10.     );
  11.     add_action( 'load-'.$page_with_help, 'pwh_add_help_tab' );
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement