I had added some content to contextual help section for plugin options page. Now I’d like that page defaulted/toggled to contextual help section open on specific condition in my...
  • May 23, 2022
  • 0 Comments
I wish to edit the text in the dashboard’s help tab. I can add help to other pages, but I want to change the text in the grey box...
  • May 14, 2022
  • 0 Comments
Using this well written post – tutorial Edit dashboard’s help tab I have full control over all standard WordPress admin screens. Can this be modified to add “Help” Tabs...
  • May 10, 2022
  • 0 Comments
How to remove the contextual help and its tab completely from WordPress v3.3.2? The add_filter for contextual help that used to work like wonder on older version no longer...
  • May 6, 2022
  • 0 Comments
IT Nursery
Is there any way to remove the help tabs? I’m looking to remove these tabs not to hide them with CSS. On the wp-admin/includes/screen.php there are a couple of...
  • April 29, 2022
  • 0 Comments
IT Nursery
Using the new WP_Screen class makes it pretty easy to add help text to a screen. <?php add_action( "load-{$somepage}", 'wpse_load_reading' ); function wpse_load_reading() { get_current_screen()->add_help_tab( array( 'id' => 'my-help-tab',...
  • April 18, 2022
  • 0 Comments