Summery Summery
Whether the current request is for a user admin screen.
Syntax Syntax
Description Description
e.g. /wp-admin/user/
Does not check if the user is an administrator; use current_user_can() for checking roles and capabilities.
Return Return
(bool) True if inside WordPress user administration pages.
Source Source
File: wp-includes/load.php
return WP_BLOG_ADMIN; } return false; } /** * Whether the current request is for the network administrative interface. *
Advertisement
Changelog Changelog
Version | Description |
---|---|
3.1.0 | Introduced. |