get_site_screen_help_sidebar_content()
Returns the content for the help sidebar on the Edit Site screens.
No Hooks.
Returns
String. Help sidebar content.
Usage
get_site_screen_help_sidebar_content();
Changelog
| Since 4.9.0 | Introduced. |
get_site_screen_help_sidebar_content() get site screen help sidebar content code WP 6.8.3
function get_site_screen_help_sidebar_content() {
return '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
'<p>' . __( '<a href="https://developer.wordpress.org/advanced-administration/multisite/admin/#network-admin-sites-screen">Documentation on Site Management</a>' ) . '</p>' .
'<p>' . __( '<a href="https://wordpress.org/support/forum/multisite/">Support forums</a>' ) . '</p>';
}