is_user_admin

Definition:
function is_user_admin() {}

Whether the current request is for a user admin screen /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.

Return values

returns:True if inside WordPress user administration pages.

Source code

function is_user_admin() {

	if ( defined( 'WP_USER_ADMIN' ) )

		return WP_USER_ADMIN;

	return false;

}

9937

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: