network_admin_url( string $path = '', string $scheme = 'admin' )

Retrieves the URL to the admin area for the network.


Description Description


Parameters Parameters

$path

(string) (Optional) path relative to the admin URL.

Default value: ''

$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 value: 'admin'


Top ↑

Return Return

(string) Admin URL link with optional path appended.


Top ↑

Source Source

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
	 *
	 * @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.
	 */
	return apply_filters( 'network_admin_url', $url, $path );
}

Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

  1. Skip to note 1 content
    Contributed by Codex

    Basic Example

    $url = network_admin_url();
    echo $url;
    

    Output: http://www.example.com/wp-admin/network/

    (protocol will be https when appropriate)

    // generate url path to Users -> Add New page in the admin and force https
    $url = network_admin_url( 'user-new.php', 'https' );
    echo $url;
    

    Output: https://www.example.com/wp-admin/network/user-new.php

You must log in before being able to contribute a note or feedback.