Make WordPress Core

Changeset 53881


Ignore:
Timestamp:
08/11/2022 02:58:55 PM (2 years ago)
Author:
johnbillion
Message:

XML-RPC: Correct the documented arguments for XML-RPC server methods.

See #55646

File:
1 edited

Legend:

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

    r53729 r53881  
    263263     *     Method arguments. Note: arguments must be ordered as documented.
    264264     *
    265      *     @type int $number1 A number to add.
    266      *     @type int $number2 A second number to add.
     265     *     @type int $0 A number to add.
     266     *     @type int $1 A second number to add.
    267267     * }
    268268     * @return int Sum of the two given numbers.
     
    685685     *     Method arguments. Note: arguments must be ordered as documented.
    686686     *
    687      *     @type string $username Username.
    688      *     @type string $password Password.
     687     *     @type string $0 Username.
     688     *     @type string $1 Password.
    689689     * }
    690690     * @return array|IXR_Error Array contains:
     
    12701270     *     Method arguments. Note: top-level arguments must be ordered as documented.
    12711271     *
    1272      *     @type int    $blog_id        Blog ID (unused).
    1273      *     @type string $username      Username.
    1274      *     @type string $password      Password.
    1275      *     @type array  $content_struct {
     1272     *     @type int    $0 Blog ID (unused).
     1273     *     @type string $1 Username.
     1274     *     @type string $2 Password.
     1275     *     @type array  $3 {
    12761276     *         Content struct for adding a new post. See wp_insert_post() for information on
    12771277     *         additional post fields
     
    17081708     *     Method arguments. Note: arguments must be ordered as documented.
    17091709     *
    1710      *     @type int    $blog_id        Blog ID (unused).
    1711      *     @type string $username      Username.
    1712      *     @type string $password      Password.
    1713      *     @type int    $post_id        Post ID.
    1714      *     @type array  $content_struct Extra content arguments.
     1710     *     @type int    $0 Blog ID (unused).
     1711     *     @type string $1 Username.
     1712     *     @type string $2 Password.
     1713     *     @type int    $3 Post ID.
     1714     *     @type array  $4 Extra content arguments.
    17151715     * }
    17161716     * @return true|IXR_Error True on success, IXR_Error on failure.
     
    17931793     *     Method arguments. Note: arguments must be ordered as documented.
    17941794     *
    1795      *     @type int    $blog_id Blog ID (unused).
    1796      *     @type string $username Username.
    1797      *     @type string $password Password.
    1798      *     @type int    $post_id Post ID.
     1795     *     @type int    $0 Blog ID (unused).
     1796     *     @type string $1 Username.
     1797     *     @type string $2 Password.
     1798     *     @type int    $3 Post ID.
    17991799     * }
    18001800     * @return true|IXR_Error True on success, IXR_Error instance on failure.
     
    18561856     *     Method arguments. Note: arguments must be ordered as documented.
    18571857     *
    1858      *     @type int    $blog_id Blog ID (unused).
    1859      *     @type string $username Username.
    1860      *     @type string $password Password.
    1861      *     @type int    $post_id Post ID.
    1862      *     @type array  $fields  The subset of post type fields to return.
     1858     *     @type int    $0 Blog ID (unused).
     1859     *     @type string $1 Username.
     1860     *     @type string $2 Password.
     1861     *     @type int    $3 Post ID.
     1862     *     @type array  $4 Optional. The subset of post type fields to return.
    18631863     * }
    18641864     * @return array|IXR_Error Array contains (based on $fields parameter):
     
    19441944     *     Method arguments. Note: arguments must be ordered as documented.
    19451945     *
    1946      *     @type int    $blog_id Blog ID (unused).
    1947      *     @type string $username Username.
    1948      *     @type string $password Password.
    1949      *     @type array  $filter  Optional. Modifies the query used to retrieve posts. Accepts 'post_type',
    1950      *                            'post_status', 'number', 'offset', 'orderby', 's', and 'order'.
    1951      *                            Default empty array.
    1952      *     @type array  $fields  Optional. The subset of post type fields to return in the response array.
     1946     *     @type int    $0 Blog ID (unused).
     1947     *     @type string $1 Username.
     1948     *     @type string $2 Password.
     1949     *     @type array  $3 Optional. Modifies the query used to retrieve posts. Accepts 'post_type',
     1950     *                     'post_status', 'number', 'offset', 'orderby', 's', and 'order'.
     1951     *                     Default empty array.
     1952     *     @type array  $4 Optional. The subset of post type fields to return in the response array.
    19531953     * }
    19541954     * @return array|IXR_Error Array contains a collection of posts.
     
    20512051     *     Method arguments. Note: arguments must be ordered as documented.
    20522052     *
    2053      *     @type int    $blog_id        Blog ID (unused).
    2054      *     @type string $username      Username.
    2055      *     @type string $password      Password.
    2056      *     @type array  $content_struct Content struct for adding a new term. The struct must contain
    2057      *                                  the term 'name' and 'taxonomy'. Optional accepted values include
    2058      *                                  'parent', 'description', and 'slug'.
     2053     *     @type int    $0 Blog ID (unused).
     2054     *     @type string $1 Username.
     2055     *     @type string $2 Password.
     2056     *     @type array  $3 Content struct for adding a new term. The struct must contain
     2057     *                     the term 'name' and 'taxonomy'. Optional accepted values include
     2058     *                     'parent', 'description', and 'slug'.
    20592059     * }
    20602060     * @return int|IXR_Error The term ID on success, or an IXR_Error object on failure.
     
    21542154     *     Method arguments. Note: arguments must be ordered as documented.
    21552155     *
    2156      *     @type int    $blog_id        Blog ID (unused).
    2157      *     @type string $username      Username.
    2158      *     @type string $password      Password.
    2159      *     @type int    $term_id        Term ID.
    2160      *     @type array  $content_struct Content struct for editing a term. The struct must contain the
    2161      *                                  term ''taxonomy'. Optional accepted values include 'name', 'parent',
    2162      *                                  'description', and 'slug'.
     2156     *     @type int    $0 Blog ID (unused).
     2157     *     @type string $1 Username.
     2158     *     @type string $2 Password.
     2159     *     @type int    $3 Term ID.
     2160     *     @type array  $4 Content struct for editing a term. The struct must contain the
     2161     *                     term 'taxonomy'. Optional accepted values include 'name', 'parent',
     2162     *                     'description', and 'slug'.
    21632163     * }
    21642164     * @return true|IXR_Error True on success, IXR_Error instance on failure.
     
    22722272     *     Method arguments. Note: arguments must be ordered as documented.
    22732273     *
    2274      *     @type int    $blog_id      Blog ID (unused).
    2275      *     @type string $username      Username.
    2276      *     @type string $password      Password.
    2277      *     @type string $taxonomy_name Taxonomy name.
    2278      *     @type int    $term_id      Term ID.
     2274     *     @type int    $0 Blog ID (unused).
     2275     *     @type string $1 Username.
     2276     *     @type string $2 Password.
     2277     *     @type string $3 Taxonomy name.
     2278     *     @type int    $4 Term ID.
    22792279     * }
    22802280     * @return true|IXR_Error True on success, IXR_Error instance on failure.
     
    23422342     *     Method arguments. Note: arguments must be ordered as documented.
    23432343     *
    2344      *     @type int    $blog_id Blog ID (unused).
    2345      *     @type string $username Username.
    2346      *     @type string $password Password.
    2347      *     @type string $taxonomy Taxonomy name.
    2348      *     @type string $term_id Term ID.
     2344     *     @type int    $0 Blog ID (unused).
     2345     *     @type string $1 Username.
     2346     *     @type string $2 Password.
     2347     *     @type string $3 Taxonomy name.
     2348     *     @type int    $4 Term ID.
    23492349     * }
    23502350     * @return array|IXR_Error IXR_Error on failure, array on success, containing:
     
    24152415     *     Method arguments. Note: arguments must be ordered as documented.
    24162416     *
    2417      *     @type int    $blog_id Blog ID (unused).
    2418      *     @type string $username Username.
    2419      *     @type string $password Password.
    2420      *     @type string $taxonomy Taxonomy name.
    2421      *     @type array  $filter  Optional. Modifies the query used to retrieve posts. Accepts 'number',
    2422      *                            'offset', 'orderby', 'order', 'hide_empty', and 'search'. Default empty array.
     2417     *     @type int    $0 Blog ID (unused).
     2418     *     @type string $1 Username.
     2419     *     @type string $2 Password.
     2420     *     @type string $3 Taxonomy name.
     2421     *     @type array  $4 Optional. Modifies the query used to retrieve posts. Accepts 'number',
     2422     *                     'offset', 'orderby', 'order', 'hide_empty', and 'search'. Default empty array.
    24232423     * }
    24242424     * @return array|IXR_Error An associative array of terms data on success, IXR_Error instance otherwise.
     
    25072507     *     Method arguments. Note: arguments must be ordered as documented.
    25082508     *
    2509      *     @type int    $blog_id Blog ID (unused).
    2510      *     @type string $username Username.
    2511      *     @type string $password Password.
    2512      *     @type string $taxonomy Taxonomy name.
    2513      *     @type array  $fields  Optional. Array of taxonomy fields to limit to in the return.
    2514      *                            Accepts 'labels', 'cap', 'menu', and 'object_type'.
    2515      *                            Default empty array.
     2509     *     @type int    $0 Blog ID (unused).
     2510     *     @type string $1 Username.
     2511     *     @type string $2 Password.
     2512     *     @type string $3 Taxonomy name.
     2513     *     @type array  $4 Optional. Array of taxonomy fields to limit to in the return.
     2514     *                     Accepts 'labels', 'cap', 'menu', and 'object_type'.
     2515     *                     Default empty array.
    25162516     * }
    25172517     * @return array|IXR_Error An array of taxonomy data on success, IXR_Error instance otherwise.
     
    25732573     *     Method arguments. Note: arguments must be ordered as documented.
    25742574     *
    2575      *     @type int    $blog_id Blog ID (unused).
    2576      *     @type string $username Username.
    2577      *     @type string $password Password.
    2578      *     @type array  $filter  Optional. An array of arguments for retrieving taxonomies.
    2579      *     @type array  $fields  Optional. The subset of taxonomy fields to return.
     2575     *     @type int    $0 Blog ID (unused).
     2576     *     @type string $1 Username.
     2577     *     @type string $2 Password.
     2578     *     @type array  $3 Optional. An array of arguments for retrieving taxonomies.
     2579     *     @type array  $4 Optional. The subset of taxonomy fields to return.
    25802580     * }
    25812581     * @return array|IXR_Error An associative array of taxonomy data with returned fields determined
     
    26412641     *     Method arguments. Note: arguments must be ordered as documented.
    26422642     *
    2643      *     @type int    $blog_id (unused)
    2644      *     @type string $username
    2645      *     @type string $password
    2646      *     @type int    $user_id
    2647      *     @type array  $fields (optional)
     2643     *     @type int    $0 Blog ID (unused).
     2644     *     @type string $1 Username.
     2645     *     @type string $2 Password.
     2646     *     @type int    $3 User ID.
     2647     *     @type array  $4 Optional. Array of fields to return.
    26482648     * }
    26492649     * @return array|IXR_Error Array contains (based on $fields parameter):
     
    27232723     *     Method arguments. Note: arguments must be ordered as documented.
    27242724     *
    2725      *     @type int    $blog_id (unused)
    2726      *     @type string $username
    2727      *     @type string $password
    2728      *     @type array  $filter (optional)
    2729      *     @type array  $fields (optional)
     2725     *     @type int    $0 Blog ID (unused).
     2726     *     @type string $1 Username.
     2727     *     @type string $2 Password.
     2728     *     @type array  $3 Optional. Arguments for the user query.
     2729     *     @type array  $4 Optional. Fields to return.
    27302730     * }
    27312731     * @return array|IXR_Error users data
     
    28052805     *     Method arguments. Note: arguments must be ordered as documented.
    28062806     *
    2807      *     @type int    $blog_id (unused)
    2808      *     @type string $username
    2809      *     @type string $password
    2810      *     @type array  $fields (optional)
     2807     *     @type int    $0 Blog ID (unused).
     2808     *     @type string $1 Username
     2809     *     @type string $2 Password
     2810     *     @type array  $3 Optional. Fields to return.
    28112811     * }
    28122812     * @return array|IXR_Error (@see wp_getUser)
     
    28542854     *     Method arguments. Note: arguments must be ordered as documented.
    28552855     *
    2856      *     @type int    $blog_id (unused)
    2857      *     @type string $username
    2858      *     @type string $password
    2859      *     @type array  $content_struct It can optionally contain:
     2856     *     @type int    $0 Blog ID (unused).
     2857     *     @type string $1 Username.
     2858     *     @type string $2 Password.
     2859     *     @type array  $3 Content struct. It can optionally contain:
    28602860     *      - 'first_name'
    28612861     *      - 'last_name'
     
    29452945     *     Method arguments. Note: arguments must be ordered as documented.
    29462946     *
    2947      *     @type int    $blog_id (unused)
    2948      *     @type int    $page_id
    2949      *     @type string $username
    2950      *     @type string $password
     2947     *     @type int    $0 Blog ID (unused).
     2948     *     @type int    $1 Page ID.
     2949     *     @type string $2 Username.
     2950     *     @type string $3 Password.
    29512951     * }
    29522952     * @return array|IXR_Error
     
    29932993     *     Method arguments. Note: arguments must be ordered as documented.
    29942994     *
    2995      *     @type int    $blog_id (unused)
    2996      *     @type string $username
    2997      *     @type string $password
    2998      *     @type int    $num_pages
     2995     *     @type int    $0 Blog ID (unused).
     2996     *     @type string $1 Username.
     2997     *     @type string $2 Password.
     2998     *     @type int    $3 Optional. Number of pages. Default 10.
    29992999     * }
    30003000     * @return array|IXR_Error
     
    30543054     *     Method arguments. Note: arguments must be ordered as documented.
    30553055     *
    3056      *     @type int    $blog_id (unused)
    3057      *     @type string $username
    3058      *     @type string $password
    3059      *     @type array  $content_struct
     3056     *     @type int    $0 Blog ID (unused).
     3057     *     @type string $1 Username.
     3058     *     @type string $2 Password.
     3059     *     @type array  $3 Content struct.
    30603060     * }
    30613061     * @return int|IXR_Error
     
    30893089     *     Method arguments. Note: arguments must be ordered as documented.
    30903090     *
    3091      *     @type int    $blog_id (unused)
    3092      *     @type string $username
    3093      *     @type string $password
    3094      *     @type int    $page_id
     3091     *     @type int    $0 Blog ID (unused).
     3092     *     @type string $1 Username.
     3093     *     @type string $2 Password.
     3094     *     @type int    $3 Page ID.
    30953095     * }
    30963096     * @return true|IXR_Error True, if success.
     
    31503150     *     Method arguments. Note: arguments must be ordered as documented.
    31513151     *
    3152      *     @type int    $blog_id (unused)
    3153      *     @type int    $page_id
    3154      *     @type string $username
    3155      *     @type string $password
    3156      *     @type string $content
    3157      *     @type string $publish
     3152     *     @type int    $0 Blog ID (unused).
     3153     *     @type int    $1 Page ID.
     3154     *     @type string $2 Username.
     3155     *     @type string $3 Password.
     3156     *     @type string $4 Content.
     3157     *     @type int    $5 Publish flag. 0 for draft, 1 for publish.
    31583158     * }
    31593159     * @return array|IXR_Error
     
    32153215     *     Method arguments. Note: arguments must be ordered as documented.
    32163216     *
    3217      *     @type int    $blog_id (unused)
    3218      *     @type string $username
    3219      *     @type string $password
     3217     *     @type int    $0 Blog ID (unused).
     3218     *     @type string $1 Username.
     3219     *     @type string $2 Password.
    32203220     * }
    32213221     * @return array|IXR_Error
     
    32783278     *     Method arguments. Note: arguments must be ordered as documented.
    32793279     *
    3280      *     @type int    $blog_id (unused)
    3281      *     @type string $username
    3282      *     @type string $password
     3280     *     @type int    $0 Blog ID (unused).
     3281     *     @type string $1 Username.
     3282     *     @type string $2 Password.
    32833283     * }
    32843284     * @return array|IXR_Error
     
    33223322     *     Method arguments. Note: arguments must be ordered as documented.
    33233323     *
    3324      *     @type int    $blog_id (unused)
    3325      *     @type string $username
    3326      *     @type string $password
     3324     *     @type int    $0 Blog ID (unused).
     3325     *     @type string $1 Username.
     3326     *     @type string $2 Password.
    33273327     * }
    33283328     * @return array|IXR_Error
     
    33743374     *     Method arguments. Note: arguments must be ordered as documented.
    33753375     *
    3376      *     @type int    $blog_id (unused)
    3377      *     @type string $username
    3378      *     @type string $password
    3379      *     @type array  $category
     3376     *     @type int    $0 Blog ID (unused).
     3377     *     @type string $1 Username.
     3378     *     @type string $2 Password.
     3379     *     @type array  $3 Category.
    33803380     * }
    33813381     * @return int|IXR_Error Category ID.
     
    34573457     *     Method arguments. Note: arguments must be ordered as documented.
    34583458     *
    3459      *     @type int    $blog_id (unused)
    3460      *     @type string $username
    3461      *     @type string $password
    3462      *     @type int    $category_id
     3459     *     @type int    $0 Blog ID (unused).
     3460     *     @type string $1 Username.
     3461     *     @type string $2 Password.
     3462     *     @type int    $3 Category ID.
    34633463     * }
    34643464     * @return bool|IXR_Error See wp_delete_term() for return info.
     
    35083508     *     Method arguments. Note: arguments must be ordered as documented.
    35093509     *
    3510      *     @type int    $blog_id (unused)
    3511      *     @type string $username
    3512      *     @type string $password
    3513      *     @type array  $category
    3514      *     @type int    $max_results
     3510     *     @type int    $0 Blog ID (unused).
     3511     *     @type string $1 Username.
     3512     *     @type string $2 Password.
     3513     *     @type array  $3 Category
     3514     *     @type int    $4 Max number of results.
    35153515     * }
    35163516     * @return array|IXR_Error
     
    35603560     *     Method arguments. Note: arguments must be ordered as documented.
    35613561     *
    3562      *     @type int    $blog_id (unused)
    3563      *     @type string $username
    3564      *     @type string $password
    3565      *     @type int    $comment_id
     3562     *     @type int    $0 Blog ID (unused).
     3563     *     @type string $1 Username.
     3564     *     @type string $2 Password.
     3565     *     @type int    $3 Comment ID.
    35663566     * }
    35673567     * @return array|IXR_Error
     
    36133613     *     Method arguments. Note: arguments must be ordered as documented.
    36143614     *
    3615      *     @type int    $blog_id (unused)
    3616      *     @type string $username
    3617      *     @type string $password
    3618      *     @type array  $struct
     3615     *     @type int    $0 Blog ID (unused).
     3616     *     @type string $1 Username.
     3617     *     @type string $2 Password.
     3618     *     @type array  $3 Optional. Query arguments.
    36193619     * }
    36203620     * @return array|IXR_Error Contains a collection of comments. See wp_xmlrpc_server::wp_getComment() for a description of each item contents
     
    37003700     *     Method arguments. Note: arguments must be ordered as documented.
    37013701     *
    3702      *     @type int    $blog_id (unused)
    3703      *     @type string $username
    3704      *     @type string $password
    3705      *     @type int    $comment_ID
     3702     *     @type int    $0 Blog ID (unused).
     3703     *     @type string $1 Username.
     3704     *     @type string $2 Password.
     3705     *     @type int    $3 Comment ID.
    37063706     * }
    37073707     * @return bool|IXR_Error See wp_delete_comment().
     
    37663766     *     Method arguments. Note: arguments must be ordered as documented.
    37673767     *
    3768      *     @type int    $blog_id (unused)
    3769      *     @type string $username
    3770      *     @type string $password
    3771      *     @type int    $comment_ID
    3772      *     @type array  $content_struct
     3768     *     @type int    $0 Blog ID (unused).
     3769     *     @type string $1 Username.
     3770     *     @type string $2 Password.
     3771     *     @type int    $3 Comment ID.
     3772     *     @type array  $4 Content structure.
    37733773     * }
    37743774     * @return true|IXR_Error True, on success.
     
    38663866     *     Method arguments. Note: arguments must be ordered as documented.
    38673867     *
    3868      *     @type int        $blog_id (unused)
    3869      *     @type string     $username
    3870      *     @type string     $password
    3871      *     @type string|int $post
    3872      *     @type array      $content_struct
     3868     *     @type int        $0 Blog ID (unused).
     3869     *     @type string     $1 Username.
     3870     *     @type string     $2 Password.
     3871     *     @type string|int $3 Post ID or URL.
     3872     *     @type array      $4 Content structure.
    38733873     * }
    38743874     * @return int|IXR_Error See wp_new_comment().
     
    40214021     *     Method arguments. Note: arguments must be ordered as documented.
    40224022     *
    4023      *     @type int    $blog_id (unused)
    4024      *     @type string $username
    4025      *     @type string $password
     4023     *     @type int    $0 Blog ID (unused).
     4024     *     @type string $1 Username.
     4025     *     @type string $2 Password.
    40264026     * }
    40274027     * @return array|IXR_Error
     
    40564056     *     Method arguments. Note: arguments must be ordered as documented.
    40574057     *
    4058      *     @type int    $blog_id (unused)
    4059      *     @type string $username
    4060      *     @type string $password
    4061      *     @type int    $post_id
     4058     *     @type int    $0 Blog ID (unused).
     4059     *     @type string $1 Username.
     4060     *     @type string $2 Password.
     4061     *     @type int    $3 Post ID.
    40624062     * }
    40634063     * @return array|IXR_Error
     
    41054105     *     Method arguments. Note: arguments must be ordered as documented.
    41064106     *
    4107      *     @type int    $blog_id (unused)
    4108      *     @type string $username
    4109      *     @type string $password
     4107     *     @type int    $0 Blog ID (unused).
     4108     *     @type string $1 Username.
     4109     *     @type string $2 Password.
    41104110     * }
    41114111     * @return array|IXR_Error
     
    41404140     *     Method arguments. Note: arguments must be ordered as documented.
    41414141     *
    4142      *     @type int    $blog_id (unused)
    4143      *     @type string $username
    4144      *     @type string $password
     4142     *     @type int    $0 Blog ID (unused).
     4143     *     @type string $1 Username.
     4144     *     @type string $2 Password.
    41454145     * }
    41464146     * @return array|IXR_Error
     
    41754175     *     Method arguments. Note: arguments must be ordered as documented.
    41764176     *
    4177      *     @type int    $blog_id (unused)
    4178      *     @type string $username
    4179      *     @type string $password
     4177     *     @type int    $0 Blog ID (unused).
     4178     *     @type string $1 Username.
     4179     *     @type string $2 Password.
    41804180     * }
    41814181     * @return array|IXR_Error
     
    42104210     *     Method arguments. Note: arguments must be ordered as documented.
    42114211     *
    4212      *     @type int    $blog_id (unused)
    4213      *     @type string $username
    4214      *     @type string $password
    4215      *     @type array  $options
     4212     *     @type int    $0 Blog ID (unused).
     4213     *     @type string $1 Username.
     4214     *     @type string $2 Password.
     4215     *     @type array  $3 Optional. Options.
    42164216     * }
    42174217     * @return array|IXR_Error
     
    42744274     *     Method arguments. Note: arguments must be ordered as documented.
    42754275     *
    4276      *     @type int    $blog_id (unused)
    4277      *     @type string $username
    4278      *     @type string $password
    4279      *     @type array  $options
     4276     *     @type int    $0 Blog ID (unused).
     4277     *     @type string $1 Username.
     4278     *     @type string $2 Password.
     4279     *     @type array  $3 Options.
    42804280     * }
    42814281     * @return array|IXR_Error
     
    43234323     *     Method arguments. Note: arguments must be ordered as documented.
    43244324     *
    4325      *     @type int    $blog_id (unused)
    4326      *     @type string $username
    4327      *     @type string $password
    4328      *     @type int    $attachment_id
     4325     *     @type int    $0 Blog ID (unused).
     4326     *     @type string $1 Username.
     4327     *     @type string $2 Password.
     4328     *     @type int    $3 Attachment ID.
    43294329     * }
    43304330     * @return array|IXR_Error Associative array contains:
     
    43844384     *     Method arguments. Note: arguments must be ordered as documented.
    43854385     *
    4386      *     @type int    $blog_id (unused)
    4387      *     @type string $username
    4388      *     @type string $password
    4389      *     @type array  $struct
     4386     *     @type int    $0 Blog ID (unused).
     4387     *     @type string $1 Username.
     4388     *     @type string $2 Password.
     4389     *     @type array  $3 Query arguments.
    43904390     * }
    43914391     * @return array|IXR_Error Contains a collection of media items. See wp_xmlrpc_server::wp_getMediaItem() for a description of each item contents
     
    44424442     *     Method arguments. Note: arguments must be ordered as documented.
    44434443     *
    4444      *     @type int    $blog_id (unused)
    4445      *     @type string $username
    4446      *     @type string $password
     4444     *     @type int    $0 Blog ID (unused).
     4445     *     @type string $1 Username.
     4446     *     @type string $2 Password.
    44474447     * }
    44484448     * @return array|IXR_Error List of post formats, otherwise IXR_Error object.
     
    44964496     *     Method arguments. Note: arguments must be ordered as documented.
    44974497     *
    4498      *     @type int    $blog_id (unused)
    4499      *     @type string $username
    4500      *     @type string $password
    4501      *     @type string $post_type_name
    4502      *     @type array  $fields (optional)
     4498     *     @type int    $0 Blog ID (unused).
     4499     *     @type string $1 Username.
     4500     *     @type string $2 Password.
     4501     *     @type string $3 Post type name.
     4502     *     @type array  $4 Optional. Fields to fetch.
    45034503     * }
    45044504     * @return array|IXR_Error Array contains:
     
    45694569     *     Method arguments. Note: arguments must be ordered as documented.
    45704570     *
    4571      *     @type int    $blog_id (unused)
    4572      *     @type string $username
    4573      *     @type string $password
    4574      *     @type array  $filter (optional)
    4575      *     @type array  $fields (optional)
     4571     *     @type int    $0 Blog ID (unused).
     4572     *     @type string $1 Username.
     4573     *     @type string $2 Password.
     4574     *     @type array  $3 Optional. Query arguments.
     4575     *     @type array  $4 Optional. Fields to fetch.
    45764576     * }
    45774577     * @return array|IXR_Error
     
    46324632     *     Method arguments. Note: arguments must be ordered as documented.
    46334633     *
    4634      *     @type int    $blog_id (unused)
    4635      *     @type string $username
    4636      *     @type string $password
    4637      *     @type int    $post_id
    4638      *     @type array  $fields (optional)
     4634     *     @type int    $0 Blog ID (unused).
     4635     *     @type string $1 Username.
     4636     *     @type string $2 Password.
     4637     *     @type int    $3 Post ID.
     4638     *     @type array  $4 Optional. Fields to fetch.
    46394639     * }
    46404640     * @return array|IXR_Error contains a collection of posts.
     
    47214721     *     Method arguments. Note: arguments must be ordered as documented.
    47224722     *
    4723      *     @type int    $blog_id (unused)
    4724      *     @type string $username
    4725      *     @type string $password
    4726      *     @type int    $revision_id
     4723     *     @type int    $0 Blog ID (unused).
     4724     *     @type string $1 Username.
     4725     *     @type string $2 Password.
     4726     *     @type int    $3 Revision ID.
    47274727     * }
    47284728     * @return bool|IXR_Error false if there was an error restoring, true if success.
     
    47904790     *     Method arguments. Note: arguments must be ordered as documented.
    47914791     *
    4792      *     @type int    $blog_id (unused)
    4793      *     @type string $username
    4794      *     @type string $password
     4792     *     @type int    $0 Blog ID (unused).
     4793     *     @type string $1 Username.
     4794     *     @type string $2 Password.
    47954795     * }
    47964796     * @return array|IXR_Error
     
    48394839     *     Method arguments. Note: arguments must be ordered as documented.
    48404840     *
    4841      *     @type string $username Username.
    4842      *     @type string $password Password.
     4841     *     @type int    $0 Blog ID (unused).
     4842     *     @type string $1 Username.
     4843     *     @type string $2 Password.
    48434844     * }
    48444845     * @return array|IXR_Error
     
    48804881     *     Method arguments. Note: arguments must be ordered as documented.
    48814882     *
    4882      *     @type int    $blog_id (unused)
    4883      *     @type string $username
    4884      *     @type string $password
     4883     *     @type int    $0 Blog ID (unused).
     4884     *     @type string $1 Username.
     4885     *     @type string $2 Password.
    48854886     * }
    48864887     * @return array|IXR_Error
     
    49234924     *     Method arguments. Note: arguments must be ordered as documented.
    49244925     *
    4925      *     @type int    $blog_id (unused)
    4926      *     @type int    $post_ID
    4927      *     @type string $username
    4928      *     @type string $password
     4926     *     @type int    $0 Blog ID (unused).
     4927     *     @type int    $1 Post ID.
     4928     *     @type string $2 Username.
     4929     *     @type string $3 Password.
    49294930     * }
    49304931     * @return array|IXR_Error
     
    49784979     *     Method arguments. Note: arguments must be ordered as documented.
    49794980     *
    4980      *     @type string $appkey (unused)
    4981      *     @type int    $blog_id (unused)
    4982      *     @type string $username
    4983      *     @type string $password
    4984      *     @type int    $numberposts (optional)
     4981     *     @type string $0 App key (unused).
     4982     *     @type int    $1 Blog ID (unused).
     4983     *     @type string $2 Username.
     4984     *     @type string $3 Password.
     4985     *     @type int    $4 Optional. Number of posts.
    49854986     * }
    49864987     * @return array|IXR_Error
     
    50765077     *     Method arguments. Note: arguments must be ordered as documented.
    50775078     *
    5078      *     @type string $appkey (unused)
    5079      *     @type int    $blog_id (unused)
    5080      *     @type string $username
    5081      *     @type string $password
    5082      *     @type string $content
    5083      *     @type string $publish
     5079     *     @type string $0 App key (unused).
     5080     *     @type int    $1 Blog ID (unused).
     5081     *     @type string $2 Username.
     5082     *     @type string $3 Password.
     5083     *     @type string $4 Content.
     5084     *     @type int    $5 Publish flag. 0 for draft, 1 for publish.
    50845085     * }
    50855086     * @return int|IXR_Error
     
    51515152     *     Method arguments. Note: arguments must be ordered as documented.
    51525153     *
    5153      *     @type int    $blog_id (unused)
    5154      *     @type int    $post_ID
    5155      *     @type string $username
    5156      *     @type string $password
    5157      *     @type string $content
    5158      *     @type bool   $publish
     5154     *     @type int    $0 Blog ID (unused).
     5155     *     @type int    $1 Post ID.
     5156     *     @type string $2 Username.
     5157     *     @type string $3 Password.
     5158     *     @type string $4 Content
     5159     *     @type int    $5 Publish flag. 0 for draft, 1 for publish.
    51595160     * }
    51605161     * @return true|IXR_Error true when done.
     
    52305231     *     Method arguments. Note: arguments must be ordered as documented.
    52315232     *
    5232      *     @type int    $blog_id (unused)
    5233      *     @type int    $post_ID
    5234      *     @type string $username
    5235      *     @type string $password
     5233     *     @type int    $0 Blog ID (unused).
     5234     *     @type int    $1 Post ID.
     5235     *     @type string $2 Username.
     5236     *     @type string $3 Password.
    52365237     * }
    52375238     * @return true|IXR_Error True when post is deleted.
     
    53165317     *     Method arguments. Note: arguments must be ordered as documented.
    53175318     *
    5318      *     @type int    $blog_id (unused)
    5319      *     @type string $username
    5320      *     @type string $password
    5321      *     @type array  $content_struct
    5322      *     @type int    $publish
     5319     *     @type int    $0 Blog ID (unused).
     5320     *     @type string $1 Username.
     5321     *     @type string $2 Password.
     5322     *     @type array  $3 Content structure.
     5323     *     @type int    $4 Optional. Publish flag. 0 for draft, 1 for publish. Default 0.
    53235324     * }
    53245325     * @return int|IXR_Error
     
    56945695     *     Method arguments. Note: arguments must be ordered as documented.
    56955696     *
    5696      *     @type int    $blog_id (unused)
    5697      *     @type string $username
    5698      *     @type string $password
    5699      *     @type array  $content_struct
    5700      *     @type int    $publish
     5697     *     @type int    $0 Post ID.
     5698     *     @type string $1 Username.
     5699     *     @type string $2 Password.
     5700     *     @type array  $3 Content structure.
     5701     *     @type int    $4 Optional. Publish flag. 0 for draft, 1 for publish. Default 0.
    57015702     * }
    57025703     * @return true|IXR_Error True on success.
     
    60266027     *     Method arguments. Note: arguments must be ordered as documented.
    60276028     *
    6028      *     @type int    $blog_id (unused)
    6029      *     @type int    $post_ID
    6030      *     @type string $username
    6031      *     @type string $password
     6029     *     @type int    $0 Post ID.
     6030     *     @type string $1 Username.
     6031     *     @type string $2 Password.
    60326032     * }
    60336033     * @return array|IXR_Error
     
    61686168     *     Method arguments. Note: arguments must be ordered as documented.
    61696169     *
    6170      *     @type int    $blog_id (unused)
    6171      *     @type string $username
    6172      *     @type string $password
    6173      *     @type int    $numberposts
     6170     *     @type int    $0 Blog ID (unused).
     6171     *     @type string $1 Username.
     6172     *     @type string $2 Password.
     6173     *     @type int    $3 Optional. Number of posts.
    61746174     * }
    61756175     * @return array|IXR_Error
     
    62956295     *     Method arguments. Note: arguments must be ordered as documented.
    62966296     *
    6297      *     @type int    $blog_id (unused)
    6298      *     @type string $username
    6299      *     @type string $password
     6297     *     @type int    $0 Blog ID (unused).
     6298     *     @type string $1 Username.
     6299     *     @type string $2 Password.
    63006300     * }
    63016301     * @return array|IXR_Error
     
    63546354     *     Method arguments. Note: arguments must be ordered as documented.
    63556355     *
    6356      *     @type int    $blog_id (unused)
    6357      *     @type string $username
    6358      *     @type string $password
    6359      *     @type array  $data
     6356     *     @type int    $0 Blog ID (unused).
     6357     *     @type string $1 Username.
     6358     *     @type string $2 Password.
     6359     *     @type array  $3 Data.
    63606360     * }
    63616361     * @return array|IXR_Error
     
    64736473     *     Method arguments. Note: arguments must be ordered as documented.
    64746474     *
    6475      *     @type int    $blog_id (unused)
    6476      *     @type string $username
    6477      *     @type string $password
    6478      *     @type int    $numberposts
     6475     *     @type int    $0 Blog ID (unused).
     6476     *     @type string $1 Username.
     6477     *     @type string $2 Password.
     6478     *     @type int    $3 Optional. Number of posts.
    64796479     * }
    64806480     * @return array|IXR_Error
     
    65376537     *     Method arguments. Note: arguments must be ordered as documented.
    65386538     *
    6539      *     @type int    $blog_id (unused)
    6540      *     @type string $username
    6541      *     @type string $password
     6539     *     @type int    $0 Blog ID (unused).
     6540     *     @type string $1 Username.
     6541     *     @type string $2 Password.
    65426542     * }
    65436543     * @return array|IXR_Error
     
    65906590     *     Method arguments. Note: arguments must be ordered as documented.
    65916591     *
    6592      *     @type int    $post_ID
    6593      *     @type string $username
    6594      *     @type string $password
     6592     *     @type int    $0 Post ID.
     6593     *     @type string $1 Username.
     6594     *     @type string $2 Password.
    65956595     * }
    65966596     * @return array|IXR_Error
     
    66436643     *     Method arguments. Note: arguments must be ordered as documented.
    66446644     *
    6645      *     @type int    $post_ID
    6646      *     @type string $username
    6647      *     @type string $password
    6648      *     @type array  $categories
     6645     *     @type int    $0 Post ID.
     6646     *     @type string $1 Username.
     6647     *     @type string $2 Password.
     6648     *     @type array  $3 Categories.
    66496649     * }
    66506650     * @return true|IXR_Error True on success.
     
    67696769     *     Method arguments. Note: arguments must be ordered as documented.
    67706770     *
    6771      *     @type int    $post_ID
    6772      *     @type string $username
    6773      *     @type string $password
     6771     *     @type int    $0 Post ID.
     6772     *     @type string $1 Username.
     6773     *     @type string $2 Password.
    67746774     * }
    67756775     * @return int|IXR_Error
     
    68216821     *     Method arguments. Note: arguments must be ordered as documented.
    68226822     *
    6823      *     @type string $pagelinkedfrom
    6824      *     @type string $pagelinkedto
     6823     *     @type string $0 URL of page linked from.
     6824     *     @type string $1 URL of page linked to.
    68256825     * }
    68266826     * @return string|IXR_Error
Note: See TracChangeset for help on using the changeset viewer.