Make WordPress Core

Changeset 32584


Ignore:
Timestamp:
05/24/2015 08:14:49 PM (10 years ago)
Author:
DrewAPicture
Message:

Add missing argument descriptions for the $args parameter in wp_xmlrpc_server->wp_getTaxonomy().

Also clarifies the return description.

See #32246.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-xmlrpc-server.php

    r32583 r32584  
    20702070     *     @type int    $blog_id  Blog ID (unused).
    20712071     *     @type string $username Username.
    2072      *     @type string $password Password
     2072     *     @type string $password Password.
    20732073     *     @type string $taxnomy  Taxonomy name.
    20742074     *     @type array  $filter   Optional. Modifies the query used to retrieve posts. Accepts 'number',
     
    21442144     * @since 3.4.0
    21452145     *
    2146      * @uses get_taxonomy()
     2146     * @see get_taxonomy()
    21472147     *
    21482148     * @param array  $args {
    21492149     *     Method arguments. Note: arguments must be ordered as documented.
    21502150     *
    2151      *     @type int    $blog_id (unused)
    2152      *     @type string $username
    2153      *     @type string $password
    2154      *     @type string $taxnomy
    2155      *     @type array  $fields (optional)
    2156      * }
    2157      * @return array|IXR_Error (@see get_taxonomy())
     2151     *     @type int    $blog_id  Blog ID (unused).
     2152     *     @type string $username Username.
     2153     *     @type string $password Password.
     2154     *     @type string $taxnomy  Taxonomy name.
     2155     *     @type array  $fields   Optional. Array of taxonomy fields to limit to in the return.
     2156     *                            Accepts 'labels', 'cap', 'menu', and 'object_type'.
     2157     *                            Default empty array.
     2158     * }
     2159     * @return array|IXR_Error An array of taxonomy data on success, IXR_Error instance otherwise.
    21582160     */
    21592161    public function wp_getTaxonomy( $args ) {
Note: See TracChangeset for help on using the changeset viewer.