Changeset 61463 for trunk/src/wp-includes/meta.php
- Timestamp:
- 01/10/2026 05:01:08 AM (4 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/meta.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/meta.php
r60264 r61463 675 675 if ( ! $meta_cache ) { 676 676 $meta_cache = update_meta_cache( $meta_type, array( $object_id ) ); 677 if ( isset( $meta_cache[ $object_id ] ) ) { 678 $meta_cache = $meta_cache[ $object_id ]; 679 } else { 680 $meta_cache = null; 681 } 677 $meta_cache = $meta_cache[ $object_id ] ?? null; 682 678 } 683 679
Note: See TracChangeset
for help on using the changeset viewer.