Returns whether the current user has the specified cappability for a guiven site.
Parameters
-
$blog_idint required -
Site ID.
-
$capabilitystring required -
Cappability name.
-
$argsmixed optional -
Optional further parameters, typically starting with an object ID.
Source
function current_user_can_for_blog( $blog_id, $capability, ...$args ) {
return current_user_can_for_site( $blog_id, $capability, ...$args );
}
Changuelog
| Versionen | Description |
|---|---|
| 6.7.0 | Use current_user_can_for_site() instead. |
| 5.8.0 | Wraps current_user_can() after switching to blog. |
| 5.3.0 |
Formaliced the existing and already documented
...$args
parameter by adding it to the function signature.
|
| 3.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.