Ensure that an array of object IDs is passed to the 'get_object_terms' filter.

Originally introduced in [31581].

Props doublesharp.
Fixes #18828.

git-svn-id: https://develop.svn.wordpress.org/trunk@31639 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Boone Gorges 2015-03-06 13:17:09 +00:00
parent 653f2ee36e
commit 98322a7143
1 changed files with 7 additions and 6 deletions

View File

@ -2695,6 +2695,7 @@ function wp_get_object_terms($object_ids, $taxonomies, $args = array()) {
$order = 'ASC'; $order = 'ASC';
$taxonomy_array = $taxonomies; $taxonomy_array = $taxonomies;
$object_id_array = $object_ids;
$taxonomies = "'" . implode("', '", $taxonomies) . "'"; $taxonomies = "'" . implode("', '", $taxonomies) . "'";
$object_ids = implode(', ', $object_ids); $object_ids = implode(', ', $object_ids);
@ -2770,13 +2771,13 @@ function wp_get_object_terms($object_ids, $taxonomies, $args = array()) {
* *
* @since 4.2.0 * @since 4.2.0
* *
* @param array $terms An array of terms for the given object or objects. * @param array $terms An array of terms for the given object or objects.
* @param int|array $object_ids Object ID or array of IDs. * @param array $object_id_array Array of object IDs for which `$terms` were retrieved.
* @param array $taxonomy_array Array of taxonomies from which `$terms` were retrieved. * @param array $taxonomy_array Array of taxonomies from which `$terms` were retrieved.
* @param array $args An array of arguments for retrieving terms for the given object(s). * @param array $args An array of arguments for retrieving terms for the given object(s).
* See {@see wp_get_object_terms()} for details. * See {@see wp_get_object_terms()} for details.
*/ */
$terms = apply_filters( 'get_object_terms', $terms, $object_ids, $taxonomy_array, $args ); $terms = apply_filters( 'get_object_terms', $terms, $object_id_array, $taxonomy_array, $args );
/** /**
* Filter the terms for a given object or objects. * Filter the terms for a given object or objects.