Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions src/wp-admin/includes/class-wp-screen.php
Original file line number Diff line number Diff line change
Expand Up @@ -792,8 +792,9 @@ public function render_screen_meta() {
* Filters the legacy contextual help list.
*
* @since 2.7.0
* @deprecated 3.3.0 Use {@see get_current_screen()->add_help_tab()} or
* {@see get_current_screen()->remove_help_tab()} instead.
* @deprecated 3.3.0 Use {@see get_current_screen()} with
* {@see WP_Screen::add_help_tab()} or
* {@see WP_Screen::remove_help_tab()} instead.
*
* @param array $old_compat_help Old contextual help.
* @param WP_Screen $screen Current WP_Screen instance.
Expand All @@ -811,8 +812,9 @@ public function render_screen_meta() {
* Filters the legacy contextual help text.
*
* @since 2.7.0
* @deprecated 3.3.0 Use {@see get_current_screen()->add_help_tab()} or
* {@see get_current_screen()->remove_help_tab()} instead.
* @deprecated 3.3.0 Use {@see get_current_screen()} with
* {@see WP_Screen::add_help_tab()} or
* {@see WP_Screen::remove_help_tab()} instead.
*
* @param string $old_help Help text that appears on the screen.
* @param string $screen_id Screen ID.
Expand All @@ -832,8 +834,9 @@ public function render_screen_meta() {
* Filters the default legacy contextual help text.
*
* @since 2.8.0
* @deprecated 3.3.0 Use {@see get_current_screen()->add_help_tab()} or
* {@see get_current_screen()->remove_help_tab()} instead.
* @deprecated 3.3.0 Use {@see get_current_screen()} with
* {@see WP_Screen::add_help_tab()} or
* {@see WP_Screen::remove_help_tab()} instead.
*
* @param string $old_help_default Default contextual help text.
*/
Expand Down
Loading