get_site_screen_help_sidebar_content()WP 4.9.0

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

No Hooks.

Return

String. Help sidebar content.

Usage

get_site_screen_help_sidebar_content();

Changelog

Since 4.9.0 Introduced.

get_site_screen_help_sidebar_content() code WP 6.5.2

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