get_site_screen_help_sidebar_content()WP 4.9.0

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

Хуков нет.

Возвращает

Строку. Help sidebar content.

Использование

get_site_screen_help_sidebar_content();

Список изменений

С версии 4.9.0 Введена.

Код get_site_screen_help_sidebar_content() 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>';
}