wpseek.com
				A WordPress-centric search engine for devs and theme authors
			network_admin_url › WordPress Function
Since3.0.0
Deprecatedn/a
› network_admin_url ( $path = '', $scheme = 'admin' )
| Parameters: (2) | 
 | 
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | 
Retrieves the URL to the admin area for the network.
Related Functions: get_admin_url, network_home_url, network_site_url, is_network_admin, user_admin_url
	Source
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 );
}