From 8e2098d706609e0195be861148a55542495a98e3 Mon Sep 17 00:00:00 2001 From: "Drew Jaynes (DrewAPicture)" Date: Wed, 2 Jul 2014 01:38:22 +0000 Subject: [PATCH] Fix parameter description for `$append` in `wp_set_object_terms()` inline docs. See #26570. git-svn-id: https://develop.svn.wordpress.org/trunk@28952 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/taxonomy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/taxonomy.php b/src/wp-includes/taxonomy.php index 73e9214188..60337131d0 100644 --- a/src/wp-includes/taxonomy.php +++ b/src/wp-includes/taxonomy.php @@ -2621,7 +2621,7 @@ function wp_insert_term( $term, $taxonomy, $args = array() ) { * @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 array|string $taxonomy The context in which to relate the term to the object. - * @param bool $append If false will delete difference of terms. + * @param bool $append Optional. If false will delete difference of terms. Default false. * @return array|WP_Error Affected Term IDs. */ function wp_set_object_terms( $object_id, $terms, $taxonomy, $append = false ) {