Files
Filename | Hook Type | Line Number | PHP Doc |
---|---|---|---|
wp-includes/class-wp-xmlrpc-server.php | apply_filters | 2694 | /** * Filters the default user query fields used by the given XML-RPC method. * * @since 3.5.0 * * @param array $fields User query fields for given method. Default 'all'. * @param string $method The method name. */ |
wp-includes/class-wp-xmlrpc-server.php | apply_filters | 2757 | /** * Retrieve users. * * The optional $filter parameter modifies the query used to retrieve users. * Accepted keys are 'number' (default: 50), 'offset' (default: 0), 'role', * 'who', 'orderby', and 'order'. * * The optional $fields parameter specifies what fields will be included * in the response array. * * @uses get_users() * @see wp_getUser() for more on $fields and return values * * @param array $args { * Method arguments. Note: arguments must be ordered as documented. * * @type int $0 Blog ID (unused). * @type string $1 Username. * @type string $2 Password. * @type array $3 Optional. Arguments for the user query. * @type array $4 Optional. Fields to return. * } * @return array|IXR_Error users data */ |
wp-includes/class-wp-xmlrpc-server.php | apply_filters | 2837 | /** * Retrieve information about the requesting user. * * @uses get_userdata() * * @param array $args { * Method arguments. Note: arguments must be ordered as documented. * * @type int $0 Blog ID (unused). * @type string $1 Username * @type string $2 Password * @type array $3 Optional. Fields to return. * } * @return array|IXR_Error (@see wp_getUser) */ |
Hook Parameters
Parameter Type | Name | Description |
---|---|---|
array | $fields | User query fields for given method. Default 'all'. |
string | $method | The method name. |
array | $fields | User query fields for given method. Default 'all'. |
string | $method | The method name. |
array | $fields | User query fields for given method. Default 'all'. |
string | $method | The method name. |