is_network_admin

Advertisement

Summery Summery

Whether the current request is for the network administrative interface.

Syntax Syntax

is_network_admin()

Description Description

e.g. /wp-admin/network/

Does not check if the user is an administrator; use current_user_can() for checking roles and capabilities.

Does not check if the site is a Multisite network; use is_multisite() for checking if Multisite is enabled.

Return Return

(bool) True if inside WordPress network administration pages.

Source Source

File: wp-includes/load.php

		return WP_ADMIN;
	}

	return false;
}

/**
 * Whether the current request is for a site's administrative interface.
 *

Advertisement

Changelog Changelog

Changelog
Version Description
3.1.0 Introduced.

Advertisement

Leave a Reply