Skip to main content

Remove the help dropdown

Home Forums WordPress Admin Customization Remove the help dropdown

Viewing 0 reply threads
  • Author
    Posts
    • #2405

      Layer7web
      Keymaster
      add_filter( 'contextual_help', 'l7w_mycontext_remove_help', 999, 3 );
      function l7w_mycontext_remove_help($old_help, $screen_id, $screen){
          if ( 'profile' == $screen_id && is_admin() ) {
              $screen->remove_help_tabs();
          }
          return $old_help;
      }
Viewing 0 reply threads

You must be logged in to reply to this topic.