Use 3.3 help API on edit tags page. props Ipstenu, see #19020.

git-svn-id: https://develop.svn.wordpress.org/trunk@19474 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Daryl Koopersmith 2011-11-29 17:37:04 +00:00
parent a122cd0f61
commit 8c414e6b1b
1 changed files with 5 additions and 1 deletions

View File

@ -221,7 +221,11 @@ if ( 'category' == $taxonomy || 'link_category' == $taxonomy || 'post_tag' == $t
'</ul>' .
'<p>' . __( '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.' ) . '</p>';
add_contextual_help($current_screen, $help);
get_current_screen()->add_help_tab( array(
'id' => 'help-overview',
'title' => __('Overview'),
'content' => $help,
) );
$help = '<p><strong>' . __( 'For more information:' ) . '</strong></p>';