Home › Forums › WordPress › Admin Customization › Remove Help Tab From Admin
- This topic has 0 replies, 1 voice, and was last updated 8 years, 2 months ago by Layer7web.
Viewing 0 reply threads
-
AuthorPosts
-
-
September 13, 2016 at 9:58 am #2481
Layer7webKeymasterPHP1234567add_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;}
-
-
AuthorPosts
Viewing 0 reply threads
You must be logged in to reply to this topic.
Comments are closed.