get_site_screen_help_sidebar_content() – Returns the content for the help sidebar on the Edit Site screens.

You appear to be a bot. Output may be restricted

Description

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

Usage

$string = get_site_screen_help_sidebar_content();

Parameters

Returns

string Help sidebar content.

Source

File name: wordpress/wp-admin/includes/ms.php
Lines:

1 to 5 of 5
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>';
}
 

 View on GitHub View on Trac