函数原型
get_site_screen_help_sidebar_content(): string
函数描述
Returns the content for the help sidebar on the Edit Site screens.
是否弃用
未弃用
函数参数
无
函数返回值
string Help sidebar content.
函数位置
File: wp-admin/includes/ms.php.
函数源码
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>';
}
源码链接
变更日志
| Version | Description |
|---|---|
| 4.9.0 | Introduced. |

