get_site_screen_help_sidebar_content() WordPress Function

The get_site_screen_help_sidebar_content() function is used to retrieve the help sidebar content for the WordPress network administration screen.

get_site_screen_help_sidebar_content() #

Returns the content for the help sidebar on the Edit Site screens.


Return

(string) Help sidebar content.


Top ↑

Source

File: wp-admin/includes/ms.php

function get_site_screen_help_sidebar_content() {
	return '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
		'<p>' . __( '<a href="https://wordpress.org/support/article/network-admin-sites-screen/">Documentation on Site Management</a>' ) . '</p>' .
		'<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support Forums</a>' ) . '</p>';
}


Top ↑

Changelog

Changelog
VersionDescription
4.9.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.