Title: contextual_help
Published: April 25, 2014
Last modified: April 28, 2025

---

# apply_filters_deprecated( ‘contextual_help’, string $old_help, string $screen_id, WP_Screen $screen )

## In this article

 * [Parameters](https://developer.wordpress.org/reference/hooks/contextual_help/?output_format=md#parameters)
 * [Source](https://developer.wordpress.org/reference/hooks/contextual_help/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/hooks/contextual_help/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/hooks/contextual_help/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/hooks/contextual_help/?output_format=md#wp--skip-link--target)

This hook has been deprecated since 3.3.0. Use {@see get_current_screen()->add_help_tab()}
or {@see get_current_screen()->remove_help_tab()} instead.

Filters the legacy contextual help text.

## 󠀁[Parameters](https://developer.wordpress.org/reference/hooks/contextual_help/?output_format=md#parameters)󠁿

 `$old_help`string

Help text that appears on the screen.

`$screen_id`string

Screen ID.

`$screen`[WP_Screen](https://developer.wordpress.org/reference/classes/wp_screen/)

Current [WP_Screen](https://developer.wordpress.org/reference/classes/wp_screen/)
instance.

## 󠀁[Source](https://developer.wordpress.org/reference/hooks/contextual_help/?output_format=md#source)󠁿

    ```php
    $old_help = apply_filters_deprecated(
    	'contextual_help',
    	array( $old_help, $this->id, $this ),
    	'3.3.0',
    	'get_current_screen()->add_help_tab(), get_current_screen()->remove_help_tab()'
    );
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-admin/includes/class-wp-screen.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/6.9.4/src/wp-admin/includes/class-wp-screen.php#L822)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/6.9.4/src/wp-admin/includes/class-wp-screen.php#L822-L827)

## 󠀁[Related](https://developer.wordpress.org/reference/hooks/contextual_help/?output_format=md#related)󠁿

| Used by | Description | 
| [WP_Screen::render_screen_meta()](https://developer.wordpress.org/reference/classes/wp_screen/render_screen_meta/)`wp-admin/includes/class-wp-screen.php` |

Renders the screen’s help section.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/hooks/contextual_help/?output_format=md#changelog)󠁿

| Version | Description | 
| [3.3.0](https://developer.wordpress.org/reference/since/3.3.0/) | Deprecated. Use [get_current_screen()->add_help_tab()](https://developer.wordpress.org/reference/functions/get_current_screen-add_help_tab/) or [get_current_screen()->remove_help_tab()](https://developer.wordpress.org/reference/functions/get_current_screen-remove_help_tab/) instead. | 
| [2.7.0](https://developer.wordpress.org/reference/since/2.7.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fhooks%2Fcontextual_help%2F)
before being able to contribute a note or feedback.