s/add_help_sidebar/set_help_sidebar/g and introduce screen->remove_help_tab($id) and screen->remove_help_tabs(). see #19020, #18785.
git-svn-id: http://svn.automattic.com/wordpress/trunk@19119 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b2bfe42593
commit
bfb98c193e
|
@ -87,7 +87,7 @@ class Custom_Background {
|
|||
'<p>' . __( 'Don’t forget to click on the Save Changes button when you are finished.' ) . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
|
||||
'<p>' . __( '<a href="http://codex.wordpress.org/Appearance_Background_Screen" target="_blank">Documentation on Custom Background</a>' ) . '</p>' .
|
||||
'<p>' . __( '<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
|
||||
|
|
|
@ -105,7 +105,7 @@ class Custom_Image_Header {
|
|||
'<p>' . __( 'Some themes come with additional header images bundled. If you see multiple images displayed, select the one you’d like and click the Save Changes button.' ) . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
|
||||
'<p>' . __( '<a href="http://codex.wordpress.org/Appearance_Header_Screen" target="_blank">Documentation on Custom Header</a>' ) . '</p>' .
|
||||
'<p>' . __( '<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
|
||||
|
|
|
@ -119,7 +119,7 @@ add_contextual_help( $current_screen, '<p>' . __( 'You can manage comments made
|
|||
'<p>' . __( 'Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link below to learn more.' ) . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
|
||||
'<p>' . __( '<a href="http://codex.wordpress.org/Administration_Screens#Comments" target="_blank">Documentation on Comments</a>' ) . '</p>' .
|
||||
'<p>' . __( '<a href="http://codex.wordpress.org/Comment_Spam" target="_blank">Documentation on Comment Spam</a>' ) . '</p>' .
|
||||
|
|
|
@ -203,7 +203,7 @@ if ( 'post' == $post_type ) {
|
|||
'content' => $discussion_settings,
|
||||
) );
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p>' . sprintf(__('You can also create posts with the <a href="%s">Press This bookmarklet</a>.'), 'options-writing.php') . '</p>' .
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Posts_Add_New_Screen" target="_blank">Documentation on Writing and Editing Posts</a>') . '</p>' .
|
||||
|
@ -229,7 +229,7 @@ if ( 'post' == $post_type ) {
|
|||
'content' => $page_attributes,
|
||||
) );
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Pages_Add_New_Screen" target="_blank">Documentation on Adding New Pages</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Pages_Screen#Editing_Individual_Pages" target="_blank">Documentation on Editing Pages</a>') . '</p>' .
|
||||
|
|
|
@ -45,7 +45,7 @@ add_contextual_help($current_screen,
|
|||
'<p>' . __( 'XFN stands for <a href="http://gmpg.org/xfn/" target="_blank">XHTML Friends Network</a>, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking.' ) . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
|
||||
'<p>' . __( '<a href="http://codex.wordpress.org/Links_Add_New_Screen" target="_blank">Documentation on Creating Links</a>' ) . '</p>' .
|
||||
'<p>' . __( '<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
|
||||
|
|
|
@ -240,7 +240,7 @@ if ( 'category' == $taxonomy || 'link_category' == $taxonomy || 'post_tag' == $t
|
|||
|
||||
$help .= '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>';
|
||||
|
||||
get_current_screen()->add_help_sidebar( $help );
|
||||
get_current_screen()->set_help_sidebar( $help );
|
||||
|
||||
unset($help);
|
||||
}
|
||||
|
|
|
@ -167,7 +167,7 @@ if ( 'post' == $post_type ) {
|
|||
'<p>' . __('You can also edit multiple posts at once. Select the posts you want to edit using the checkboxes, select Edit from the Bulk Actions menu and click Apply. You will be able to change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the x next to its name in the Bulk Edit area that appears.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Posts_Screen" target="_blank">Documentation on Managing Posts</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
@ -179,7 +179,7 @@ if ( 'post' == $post_type ) {
|
|||
'<p>' . __('You can also perform the same types of actions, including narrowing the list by using the filters, acting on a Page using the action links that appear when you hover over a row, or using the Bulk Actions menu to edit the metadata for multiple Pages at once.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Pages_Screen" target="_blank">Documentation on Managing Pages</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -43,7 +43,7 @@ add_contextual_help( $current_screen,
|
|||
'<p>' . __('Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Tools_Export_Screen" target="_blank">Documentation on Export</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -21,7 +21,7 @@ add_contextual_help($current_screen,
|
|||
'<p>' . __('In previous versions of WordPress, all the importers were built-in, but they have been turned into plugins as of version 3.0 since most people only use them once or infrequently.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Tools_Import_Screen" target="_blank">Documentation on Import</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -153,7 +153,7 @@ function add_screen_option( $option, $args = array() ) {
|
|||
if ( ! $current_screen )
|
||||
return;
|
||||
|
||||
return $current_screen->add_option( $option, $args );
|
||||
$current_screen->add_option( $option, $args );
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -597,7 +597,7 @@ final class WP_Screen {
|
|||
|
||||
/**
|
||||
* Add a help tab to the contextual help for the screen.
|
||||
* Call this in template files after admin.php is loaded and before admin-header.php is loaded to add contextual help tabs.
|
||||
* Call this on the load-$pagenow hook for the relevant screen.
|
||||
*
|
||||
* @since 3.3.0
|
||||
*
|
||||
|
@ -626,6 +626,26 @@ final class WP_Screen {
|
|||
$this->_help_tabs[] = $args;
|
||||
}
|
||||
|
||||
/**
|
||||
* Removes a help tab from the contextual help for the screen.
|
||||
*
|
||||
* @since 3.3.0
|
||||
*
|
||||
* @param string $id The help tab ID.
|
||||
*/
|
||||
public function remove_help_tab( $id ) {
|
||||
unset( $this->_help_tabs[ $id ] );
|
||||
}
|
||||
|
||||
/**
|
||||
* Removes all help tabs from the contextual help for the screen.
|
||||
*
|
||||
* @since 3.3.0
|
||||
*/
|
||||
public function remove_help_tabs() {
|
||||
$this->_help_tabs = array();
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a sidebar to the contextual help for the screen.
|
||||
* Call this in template files after admin.php is loaded and before admin-header.php is loaded to add a sidebar to the contextual help.
|
||||
|
@ -634,7 +654,7 @@ final class WP_Screen {
|
|||
*
|
||||
* @param string $content Sidebar content in plain text or HTML.
|
||||
*/
|
||||
public function add_help_sidebar( $content ) {
|
||||
public function set_help_sidebar( $content ) {
|
||||
$this->_help_sidebar = $content;
|
||||
}
|
||||
|
||||
|
|
|
@ -70,7 +70,7 @@ get_current_screen()->add_help_tab( array(
|
|||
'content' => $help_content,
|
||||
) );
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
|
||||
'<p>' . __( '<a href="http://codex.wordpress.org/Dashboard_Screen" target="_blank">Documentation on Dashboard</a>' ) . '</p>' .
|
||||
'<p>' . __( '<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
|
||||
|
|
|
@ -47,7 +47,7 @@ add_contextual_help( $current_screen,
|
|||
'<p>' . __('If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Links_Screen" target="_blank">Documentation on Managing Links</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -67,7 +67,7 @@ if ( isset($_GET['inline']) ) {
|
|||
'<p>' . __('There are two options for uploading files: <em>Select Files</em> will open the Flash-based uploader (multiple file upload allowed), or you can use the <em>Browser Uploader</em>. Clicking <em>Select Files</em> opens a navigation window showing you files in your operating system. Selecting <em>Open</em> after clicking on the file you want activates a progress bar on the uploader screen. Basic image editing is available after upload is complete. Make sure you click <em>Save</em> before leaving this screen.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Media_Add_New_Screen" target="_blank">Documentation on Uploading Media Files</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -451,7 +451,7 @@ $help .= '<p>' . __('To create a new custom menu, click on the + tab, give the m
|
|||
|
||||
add_contextual_help($current_screen, $help);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Appearance_Menus_Screen" target="_blank">Documentation on Menus</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -20,7 +20,7 @@ add_contextual_help($current_screen,
|
|||
'<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Settings_Discussion_Screen" target="_blank">Documentation on Discussion Settings</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -67,7 +67,7 @@ add_contextual_help($current_screen,
|
|||
'<p>' . __('Remember to click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Settings_General_Screen" target="_blank">Documentation on General Settings</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -22,7 +22,7 @@ add_contextual_help($current_screen,
|
|||
'<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Settings_Media_Screen" target="_blank">Documentation on Media Settings</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -23,7 +23,7 @@ add_contextual_help($current_screen,
|
|||
'<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Settings_Permalinks_Screen" target="_blank">Documentation on Permalinks Settings</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Using_Permalinks" target="_blank">Documentation on Using Permalinks</a>') . '</p>' .
|
||||
|
|
|
@ -21,7 +21,7 @@ add_contextual_help($current_screen,
|
|||
'<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Settings_Privacy_Screen" target="_blank">Documentation on Privacy Settings</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -48,7 +48,7 @@ add_contextual_help($current_screen,
|
|||
'<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Settings_Reading_Screen" target="_blank">Documentation on Reading Settings</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -20,7 +20,7 @@ add_contextual_help($current_screen,
|
|||
'<p>' . __('You must click the Save Changes button at the bottom of the screen for new settings to take effect.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Settings_Writing_Screen" target="_blank">Documentation on Writing Settings</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -325,7 +325,7 @@ add_contextual_help($current_screen,
|
|||
'<p>' . sprintf( __('If something goes wrong with a plugin and you can’t use WordPress, delete or rename that file in the <code>%s</code> directory and it will be automatically deactivated.'), WP_PLUGIN_DIR) . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Managing_Plugins#Plugin_Management" target="_blank">Documentation on Managing Plugins</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -44,7 +44,7 @@ if ( current_user_can('install_themes') )
|
|||
|
||||
add_contextual_help($current_screen, $help);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Using_Themes" target="_blank">Documentation on Using Themes</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -17,7 +17,7 @@ add_contextual_help($current_screen,
|
|||
'<p>' . __('Note: Turbo/Gears is no longer promoted on this screen as it was in previous versions due to the fact that Google has discontinued support for it.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Tools_Screen" target="_blank">Documentation on Tools</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -424,7 +424,7 @@ add_contextual_help($current_screen,
|
|||
'<p>' . __('To update themes or plugins from this screen, use the checkboxes to make your selection and click on the appropriate Update button. Check the box at the top of the Themes or Plugins section to select all and update them all at once.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Dashboard_Updates_Screen" target="_blank">Documentation on Updating WordPress</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -152,7 +152,7 @@ add_contextual_help( $current_screen,
|
|||
'<p>' . __( 'If a media file has not been attached to any post, you will see that in the <em>Attached To</em> column, and can click on <em>Attach File</em> to launch a small popup that will allow you to search for a post and attach the file.' ) . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
|
||||
'<p>' . __( '<a href="http://codex.wordpress.org/Media_Library_Screen" target="_blank">Documentation on Media Library</a>' ) . '</p>' .
|
||||
'<p>' . __( '<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>' ) . '</p>'
|
||||
|
|
|
@ -45,7 +45,7 @@ add_contextual_help($current_screen,
|
|||
'<p>' . __('Remember to click the Update Profile button when you are finished.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Users_Your_Profile_Screen" target="_blank">Documentation on User Profiles</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -146,7 +146,7 @@ add_contextual_help($current_screen,
|
|||
'<p>' . __('Remember to click the Add User button at the bottom of this screen when you are finished.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Users_Add_New_Screen" target="_blank">Documentation on Adding New Users</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
|
@ -26,7 +26,7 @@ add_contextual_help($current_screen,
|
|||
'<p>' . __('To add a new user for your site, click the Add New button at the top of the screen or Add New in the Users menu section.') . '</p>'
|
||||
);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Users_Screen" target="_blank">Documentation on Managing Users</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Roles_and_Capabilities" target="_blank">Descriptions of Roles and Capabilities</a>') . '</p>' .
|
||||
|
|
|
@ -46,7 +46,7 @@ $help = '
|
|||
|
||||
add_contextual_help($current_screen, $help);
|
||||
|
||||
get_current_screen()->add_help_sidebar(
|
||||
get_current_screen()->set_help_sidebar(
|
||||
'<p><strong>' . __('For more information:') . '</strong></p>' .
|
||||
'<p>' . __('<a href="http://codex.wordpress.org/Appearance_Widgets_Screen" target="_blank">Documentation on Widgets</a>') . '</p>' .
|
||||
'<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
|
||||
|
|
Loading…
Reference in New Issue