From bce23896336b667c18d14e2fdfbbeb6e905c772e Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 12 Jan 2017 06:53:21 +0000 Subject: [PATCH] Docs: In `wp_set_object_terms()`, add a note that passing an empty value as `$terms` argument will remove all related terms. Props barryceelen. Fixes #36690. git-svn-id: https://develop.svn.wordpress.org/trunk@39893 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/taxonomy.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/wp-includes/taxonomy.php b/src/wp-includes/taxonomy.php index 2b2a9fb9c1..d088b3c219 100644 --- a/src/wp-includes/taxonomy.php +++ b/src/wp-includes/taxonomy.php @@ -2213,8 +2213,9 @@ function wp_insert_term( $term, $taxonomy, $args = array() ) { * @global wpdb $wpdb The WordPress database abstraction object. * * @param int $object_id The object to relate to. - * @param array|int|string $terms A single term slug, single term id, or array of either term slugs or ids. - * Will replace all existing related terms in this taxonomy. + * @param string|int|array $terms A single term slug, single term id, or array of either term slugs or ids. + * Will replace all existing related terms in this taxonomy. Passing an + * empty value will remove all related terms. * @param string $taxonomy The context in which to relate the term to the object. * @param bool $append Optional. If false will delete difference of terms. Default false. * @return array|WP_Error Term taxonomy IDs of the affected terms. @@ -2341,7 +2342,7 @@ function wp_set_object_terms( $object_id, $terms, $taxonomy, $append = false ) { * @since 3.6.0 * * @param int $object_id The ID of the object to which the terms will be added. - * @param array|int|string $terms The slug(s) or ID(s) of the term(s) to add. + * @param string|int|array $terms The slug(s) or ID(s) of the term(s) to add. * @param array|string $taxonomy Taxonomy name. * @return array|WP_Error Term taxonomy IDs of the affected terms. */ @@ -2357,7 +2358,7 @@ function wp_add_object_terms( $object_id, $terms, $taxonomy ) { * @global wpdb $wpdb WordPress database abstraction object. * * @param int $object_id The ID of the object from which the terms will be removed. - * @param array|int|string $terms The slug(s) or ID(s) of the term(s) to remove. + * @param string|int|array $terms The slug(s) or ID(s) of the term(s) to remove. * @param array|string $taxonomy Taxonomy name. * @return bool|WP_Error True on success, false or WP_Error on failure. */