Docs: Add variadic markers to the optional $object_id parameter notation for WP_User::has_cap().

See #32246.


git-svn-id: https://develop.svn.wordpress.org/trunk@35954 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2015-12-16 05:31:27 +00:00
parent e222e3e273
commit 228c200b35

View File

@ -702,7 +702,7 @@ class WP_User {
* @see map_meta_cap() * @see map_meta_cap()
* *
* @param string $cap Capability name. * @param string $cap Capability name.
* @param int $object_id Optional. ID of the specific object to check against if `$cap` is a "meta" cap. * @param int $object_id,... Optional. ID of the specific object to check against if `$cap` is a "meta" cap.
* "Meta" capabilities, e.g. 'edit_post', 'edit_user', etc., are capabilities used * "Meta" capabilities, e.g. 'edit_post', 'edit_user', etc., are capabilities used
* by map_meta_cap() to map to other "primitive" capabilities, e.g. 'edit_posts', * by map_meta_cap() to map to other "primitive" capabilities, e.g. 'edit_posts',
* 'edit_others_posts', etc. The parameter is accessed via func_get_args() and passed * 'edit_others_posts', etc. The parameter is accessed via func_get_args() and passed