diff --git a/src/wp-includes/class-wp-xmlrpc-server.php b/src/wp-includes/class-wp-xmlrpc-server.php
index e031097de8..c952d9dc58 100644
a
|
b
|
class wp_xmlrpc_server extends IXR_Server { |
2274 | 2274 | * @type int $blog_id Blog ID (unused). |
2275 | 2275 | * @type string $username Username. |
2276 | 2276 | * @type string $password Password. |
2277 | | * @type string $taxnomy_name Taxonomy name. |
| 2277 | * @type string $taxonomy_name Taxonomy name. |
2278 | 2278 | * @type int $term_id Term ID. |
2279 | 2279 | * } |
2280 | 2280 | * @return true|IXR_Error True on success, IXR_Error instance on failure. |
… |
… |
class wp_xmlrpc_server extends IXR_Server { |
2344 | 2344 | * @type int $blog_id Blog ID (unused). |
2345 | 2345 | * @type string $username Username. |
2346 | 2346 | * @type string $password Password. |
2347 | | * @type string $taxnomy Taxonomy name. |
| 2347 | * @type string $taxonomy Taxonomy name. |
2348 | 2348 | * @type string $term_id Term ID. |
2349 | 2349 | * } |
2350 | 2350 | * @return array|IXR_Error IXR_Error on failure, array on success, containing: |
… |
… |
class wp_xmlrpc_server extends IXR_Server { |
2417 | 2417 | * @type int $blog_id Blog ID (unused). |
2418 | 2418 | * @type string $username Username. |
2419 | 2419 | * @type string $password Password. |
2420 | | * @type string $taxnomy Taxonomy name. |
| 2420 | * @type string $taxonomy Taxonomy name. |
2421 | 2421 | * @type array $filter Optional. Modifies the query used to retrieve posts. Accepts 'number', |
2422 | 2422 | * 'offset', 'orderby', 'order', 'hide_empty', and 'search'. Default empty array. |
2423 | 2423 | * } |
… |
… |
class wp_xmlrpc_server extends IXR_Server { |
2509 | 2509 | * @type int $blog_id Blog ID (unused). |
2510 | 2510 | * @type string $username Username. |
2511 | 2511 | * @type string $password Password. |
2512 | | * @type string $taxnomy Taxonomy name. |
| 2512 | * @type string $taxonomy Taxonomy name. |
2513 | 2513 | * @type array $fields Optional. Array of taxonomy fields to limit to in the return. |
2514 | 2514 | * Accepts 'labels', 'cap', 'menu', and 'object_type'. |
2515 | 2515 | * Default empty array. |