How to remove contextual help on WP 3.3.2?
Since WordPress 3.3, contextual help tabs are added via the Screen object, using add_help_tab(). The basic structure is as follows: <?php $screen = get_current_screen(); $screen->add_help_tab( array( ‘id’ => ‘sfc-base’, ‘title’ => __(‘Connecting to Facebook’, ‘sfc’), ‘content’ => “HTML for help content”, ) ); ?> If you know the $id of a specific help tab, you … Read more