wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



get_site_screen_help_sidebar_content › WordPress Function

Seit4.9.0
Veraltetn/v
get_site_screen_help_sidebar_content ( Keine Parameter )
Gibt zurück:
  • (string) Help sidebar content.
Definiert in:
Codex:

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



Quellcode

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>';
}