From fcdf942e04cc3ad70f89da78d88b0f41d15ab28e Mon Sep 17 00:00:00 2001 From: koopersmith Date: Tue, 29 Nov 2011 17:37:04 +0000 Subject: [PATCH] Use 3.3 help API on edit tags page. props Ipstenu, see #19020. git-svn-id: http://svn.automattic.com/wordpress/trunk@19474 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/edit-tags.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/wp-admin/edit-tags.php b/wp-admin/edit-tags.php index 5c12429d8..9ff264818 100644 --- a/wp-admin/edit-tags.php +++ b/wp-admin/edit-tags.php @@ -221,7 +221,11 @@ if ( 'category' == $taxonomy || 'link_category' == $taxonomy || 'post_tag' == $t '' . '

' . __( 'You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table.' ) . '

'; - add_contextual_help($current_screen, $help); + get_current_screen()->add_help_tab( array( + 'id' => 'help-overview', + 'title' => __('Overview'), + 'content' => $help, + ) ); $help = '

' . __( 'For more information:' ) . '

';