函数原型
network_admin_url( string $path = ”, string $scheme = ‘admin’ ): string
函数描述
Retrieves the URL to the admin area for the network.
是否弃用
未弃用
函数参数
-
$path
string
Optional - path relative to the admin URL.
Default:
'' -
$scheme
string
Optional - The scheme to use. Default is
'admin', which obeys force_ssl_admin() and is_ssl() .'http'or'https'can be passed to force those schemes.Default:
'admin'
函数返回值
string Admin URL link with optional path appended.
函数位置
File: wp-includes/link-template.php.
函数源码
function network_admin_url( $path = '', $scheme = 'admin' ) {
if ( ! is_multisite() ) {
return admin_url( $path, $scheme );
}
$url = network_site_url( 'wp-admin/network/', $scheme );
if ( $path && is_string( $path ) ) {
$url .= ltrim( $path, '/' );
}
/**
* Filters the network admin URL.
*
* @since 3.0.0
* @since 5.8.0 The `$scheme` parameter was added.
*
* @param string $url The complete network admin URL including scheme and path.
* @param string $path Path relative to the network admin URL. Blank string if
* no path is specified.
* @param string|null $scheme The scheme to use. Accepts 'http', 'https',
* 'admin', or null. Default is 'admin', which obeys force_ssl_admin() and is_ssl().
*/
return apply_filters( 'network_admin_url', $url, $path, $scheme );
}
源码链接
变更日志
| Version | Description |
|---|---|
| 3.0.0 | Introduced. |

