Ticket #2160: get_post_custom_values.patch
File get_post_custom_values.patch, 359 bytes (added by , 19 years ago) |
---|
-
template-functions-post.php
237 237 if ( empty($key) ) 238 238 return $post_meta_cache[$id]; 239 239 else 240 return get_post_custom();240 return $post_meta_cache[$id][$key]; 241 241 } 242 242 243 243