Ticket #15483: 15483.2.diff
File 15483.2.diff, 441 bytes (added by , 15 years ago) |
---|
-
wp-includes/post.php
1495 1495 if ( ! $post_id ) 1496 1496 $post_id = get_the_ID(); 1497 1497 1498 if ( ! wp_cache_get( $post_id, 'post_meta' ) ) 1499 update_postmeta_cache( $post_id ); 1500 1501 return wp_cache_get( $post_id, 'post_meta' ); 1498 return get_metadata( 'post', $post_id ); 1502 1499 } 1503 1500 1504 1501 /**