wpseek.com
WordPress开发者和主题制作者的搜索引擎



get_site_screen_help_sidebar_content › WordPress Function

Since4.9.0
已弃用n/a
get_site_screen_help_sidebar_content ( 没有参数 )
返回:
  • (string) Help sidebar content.
定义在:
文档:

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



源码

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