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() get site screen help sidebar content WP 5.6.2
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>';
}