Filters the terms for a given object or objects.
$terms\WP_Term[]|int[]|string[]|string$object_idsstring$taxonomiesstring$argsarraywp-includes/taxonomy.php:2374wp_get_object_terms() * @param WP_Term[]|int[]|string[]|string $terms Array of terms or a count thereof as a numeric string. * @param string $object_ids Comma separated list of object IDs for which terms were retrieved. * @param string $taxonomies SQL fragment of taxonomy names from which terms were retrieved. * @param array $args Array of arguments for retrieving terms for the given * object(s). See wp_get_object_terms() for details. */ return apply_filters( 'wp_get_object_terms', $terms, $object_ids, $taxonomies, $args );} /** * Adds a new term to the database. * * A non-existent term is inserted in the following sequence:Introduced in 2.8.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.