Changeset 32577
- Timestamp:
- 05/24/2015 04:59:26 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-xmlrpc-server.php
r32576 r32577 1747 1747 * @type string $password Password. 1748 1748 * @type array $content_struct Content struct for adding a new term. The struct must contain 1749 * The term 'name' and 'taxonomy'. Optional accepted values include1749 * the term 'name' and 'taxonomy'. Optional accepted values include 1750 1750 * 'parent', 'description', and 'slug'. 1751 1751 * } … … 1823 1823 * @since 3.4.0 1824 1824 * 1825 * @uses wp_update_term() 1826 * @param array $args Method parameters. Contains: 1827 * - int $blog_id (unused) 1828 * - string $username 1829 * - string $password 1830 * - string $term_id 1831 * - array $content_struct 1832 * The $content_struct must contain: 1833 * - 'taxonomy' 1834 * Also, it can optionally contain: 1835 * - 'name' 1836 * - 'parent' 1837 * - 'description' 1838 * - 'slug' 1839 * @return true|IXR_Error True, on success. 1825 * @see wp_update_term() 1826 * 1827 * @param array $args { 1828 * Method parameters. 1829 * 1830 * @type int $blog_id Blog ID (unused). 1831 * @type string $username Username. 1832 * @type string $password Password. 1833 * @type int $term_id Term ID. 1834 * @type array $content_struct Content struct for editing a term. The struct must contain the 1835 * term ''taxonomy'. Optional accepted values include 'name', 'parent', 1836 * 'description', and 'slug'. 1837 * } 1838 * @return true|IXR_Error True on success, IXR_Error instance on failure. 1840 1839 */ 1841 1840 public function wp_editTerm( $args ) {
Note: See TracChangeset
for help on using the changeset viewer.