Changeset 31639 for trunk/src/wp-includes/taxonomy.php
- Timestamp:
- 03/06/2015 01:17:09 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r31638 r31639 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); … … 2771 2772 * @since 4.2.0 2772 2773 * 2773 * @param array $termsAn array of terms for the given object or objects.2774 * @param int|array $object_ids Object ID or array of IDs.2775 * @param array $taxonomy_arrayArray of taxonomies from which `$terms` were retrieved.2776 * @param array $argsAn array of arguments for retrieving terms for the given object(s).2777 * 2778 */ 2779 $terms = apply_filters( 'get_object_terms', $terms, $object_id s, $taxonomy_array, $args );2774 * @param array $terms An array of terms for the given object or objects. 2775 * @param array $object_id_array Array of object IDs for which `$terms` were retrieved. 2776 * @param array $taxonomy_array Array of taxonomies from which `$terms` were retrieved. 2777 * @param array $args An array of arguments for retrieving terms for the given object(s). 2778 * See {@see wp_get_object_terms()} for details. 2779 */ 2780 $terms = apply_filters( 'get_object_terms', $terms, $object_id_array, $taxonomy_array, $args ); 2780 2781 2781 2782 /**
Note: See TracChangeset
for help on using the changeset viewer.