current_user_can_for_blog( int $blog_id, string $capability )
Whether the current user has a specific capability for a given site.
Parameters
- $blog_id
-
(Required) Site ID.
- $capability
-
(Required) Capability name.
Return
(bool) Whether the user has the given capability.
Source
File: wp-includes/capabilities.php
function current_user_can_for_blog( $blog_id, $capability ) {
$switched = is_multisite() ? switch_to_blog( $blog_id ) : false;
$current_user = wp_get_current_user();
if ( empty( $current_user ) ) {
if ( $switched ) {
restore_current_blog();
}
return false;
}
$args = array_slice( func_get_args(), 2 );
$args = array_merge( array( $capability ), $args );
$can = call_user_func_array( array( $current_user, 'has_cap' ), $args );
if ( $switched ) {
restore_current_blog();
}
return $can;
}
Changelog
Version | Description |
---|---|
WP-3.0.0 | Introduced. |