Ticket #18828: 18828.4.patch
File 18828.4.patch, 874 bytes (added by , 10 years ago) |
---|
-
wp-includes/taxonomy.php
2695 2695 $order = 'ASC'; 2696 2696 2697 2697 $taxonomy_array = $taxonomies; 2698 $object_id_array = $object_ids; 2698 2699 $taxonomies = "'" . implode("', '", $taxonomies) . "'"; 2699 2700 $object_ids = implode(', ', $object_ids); 2700 2701 … … 2776 2777 * @param array $args An array of arguments for retrieving terms for the given object(s). 2777 2778 * See {@see wp_get_object_terms()} for details. 2778 2779 */ 2779 $terms = apply_filters( 'get_object_terms', $terms, $object_id s, $taxonomy_array, $args );2780 $terms = apply_filters( 'get_object_terms', $terms, $object_id_array, $taxonomy_array, $args ); 2780 2781 2781 2782 /** 2782 2783 * Filter the terms for a given object or objects.