Changeset 45723 for trunk/src/wp-includes/deprecated.php
- Timestamp:
- 08/03/2019 03:34:54 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/deprecated.php
r45674 r45723 1288 1288 1289 1289 if ( ! $cat_ids = wp_cache_get( 'all_category_ids', 'category' ) ) { 1290 $cat_ids = get_terms( 'category', array('fields' => 'ids', 'get' => 'all') ); 1290 $cat_ids = get_terms( 1291 array( 1292 'taxonomy' => 'category', 1293 'fields' => 'ids', 1294 'get' => 'all', 1295 ) 1296 ); 1291 1297 wp_cache_add( 'all_category_ids', $cat_ids, 'category' ); 1292 1298 }
Note: See TracChangeset
for help on using the changeset viewer.