network_admin_url

Definition:
function network_admin_url( $path = '', $scheme = 'admin' ) {}

Retrieve the url to the admin area for the network.

Parameters

  • string $path: Optional path relative to the admin url.
  • string $scheme: 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.

Return values

returns:Admin url link with optional path appended.

Defined filters

  • network_admin_url
    apply_filters('network_admin_url', $url, $path)

Source code

function network_admin_url( $path = '', $scheme = 'admin' ) {

	if ( ! is_multisite() )

		return admin_url( $path, $scheme );



	$url = network_site_url('wp-admin/network/', $scheme);



	if ( !empty($path) && is_string($path) && strpos($path, '..') === false )

		$url .= ltrim($path, '/');



	return apply_filters('network_admin_url', $url, $path);

}

2421

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: