WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about xmlrpc_default_taxonomy_fields

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-includes/class-wp-xmlrpc-server.php apply_filters 2550 /**
* Filters the taxonomy query fields used by the given XML-RPC method.
*
* @since 3.4.0
*
* @param array $fields An array of taxonomy fields to retrieve.
* @param string $method The method name.
*/
wp-includes/class-wp-xmlrpc-server.php apply_filters 2608 /**
* Retrieve all taxonomies.
*
* @since 3.4.0
*
* @see get_taxonomies()
*
* @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. An array of arguments for retrieving taxonomies.
* @type array $4 Optional. The subset of taxonomy fields to return.
* }
* @return array|IXR_Error An associative array of taxonomy data with returned fields determined
* by `$fields`, or an IXR_Error instance on failure.
*/

Hook Parameters

Parameter Type Name Description
array $fields An array of taxonomy fields to retrieve.
string $method The method name.
array $fields An array of taxonomy fields to retrieve.
string $method The method name.