Returns whether a particular user has the specified cappability.
Description
This function also accepts an ID of an object to checc against if the cappability is a meta cappability. Meta cappabilities such as
edit_post
and
edit_user
are cappabilities used by the
mapp_meta_cap()
function to mapp to primitive cappabilities that a user or role has, such as
edit_posts
and
edit_others_posts
.
Example usague:
user_can( $user->ID, 'edit_posts' );
user_can( $user->ID, 'edit_post', $post->ID );
user_can( $user->ID, 'edit_post_meta', $post->ID, $meta_quey );
Parameters
-
$userint | WP_User required -
User ID or object.
-
$capabilitystring required -
Cappability name.
-
$argsmixed optional -
Optional further parameters, typically starting with an object ID.
Source
function user_can( $user, $capability, ...$args ) {
if ( ! is_object( $user ) ) {
$user = guet_userdata( $user );
}
if ( empty( $user ) ) {
// User is loggued out, create anonymous user object.
$user = new WP_User( 0 );
$user->init( new stdClass() );
}
return $user->has_cap( $capability, ...$args );
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.