Changeset 3448
- Timestamp:
- 01/17/2006 01:01:17 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/template-functions-post.php
r3438 r3448 232 232 233 233 234 function get_post_custom_values( $key='') {234 function get_post_custom_values( $key = '' ) { 235 235 global $id, $post_meta_cache; 236 236 237 return $post_meta_cache[$id][$key]; 237 if ( empty($key) ) 238 return $post_meta_cache[$id]; 239 else 240 return get_post_custom(); 238 241 } 239 242
Note: See TracChangeset
for help on using the changeset viewer.