Title: contextual_help_list
Published: April 25, 2014
Last modified: May 20, 2026

---

# apply_filters_deprecated( ‘contextual_help_list’, array $old_compat_help, WP_Screen $screen )

## In this article

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

[ Back to top](https://developer.wordpress.org/reference/hooks/contextual_help_list/?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 list.

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

 `$old_compat_help`array

Old contextual help.

`$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_list/?output_format=md#source)󠁿

    ```php
    self::$_old_compat_help = apply_filters_deprecated(
    	'contextual_help_list',
    	array( self::$_old_compat_help, $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/7.0/src/wp-admin/includes/class-wp-screen.php#L801)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-admin/includes/class-wp-screen.php#L801-L806)

## 󠀁[Related](https://developer.wordpress.org/reference/hooks/contextual_help_list/?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_list/?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_list%2F)
before being able to contribute a note or feedback.