is_user_admin()

Whether the current request is for a user admin screen.


Description

e.g. /wp-admin/user/

Does not inform on whether the user is an admin! Use capability checks to tell if the user should be accessing a section or not current_user_can().


Return

(bool) True if inside ClassicPress user administration pages.


Source

File: wp-includes/load.php

function is_user_admin() {
	if ( isset( $GLOBALS['current_screen'] ) )
		return $GLOBALS['current_screen']->in_admin( 'user' );
	elseif ( defined( 'WP_USER_ADMIN' ) )
		return WP_USER_ADMIN;

	return false;
}


Changelog

Changelog
Version Description
WP-3.1.0 Introduced.