Changeset 36076
- Timestamp:
- 12/23/2015 07:28:06 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/taxonomy.php
r36056 r36076 3457 3457 * @since 2.3.0 3458 3458 * 3459 * @global bool $_wp_suspend_cache_invalidation 3460 * 3459 3461 * @see get_object_taxonomies() for more on $object_type. 3460 3462 * … … 3463 3465 */ 3464 3466 function clean_object_term_cache($object_ids, $object_type) { 3467 global $_wp_suspend_cache_invalidation; 3468 3469 if ( ! empty( $_wp_suspend_cache_invalidation ) ) { 3470 return; 3471 } 3472 3465 3473 if ( !is_array($object_ids) ) 3466 3474 $object_ids = array($object_ids);
Note: See TracChangeset
for help on using the changeset viewer.