Fix parameter description for $append in wp_set_object_terms() inline docs.

See #26570.

Built from https://develop.svn.wordpress.org/trunk@28952


git-svn-id: http://core.svn.wordpress.org/trunk@28749 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2014-07-02 01:39:15 +00:00
parent 1b23dd8f05
commit 52fbb3c484

View File

@ -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. * @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. * 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 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. * @return array|WP_Error Affected Term IDs.
*/ */
function wp_set_object_terms( $object_id, $terms, $taxonomy, $append = false ) { function wp_set_object_terms( $object_id, $terms, $taxonomy, $append = false ) {