get_post_custom_values update. Fixes #2160

git-svn-id: http://svn.automattic.com/wordpress/trunk@3448 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
matt 2006-01-17 01:01:17 +00:00
parent a3b3902c53
commit 0ca2b56f1e
1 changed files with 5 additions and 2 deletions

View File

@ -231,10 +231,13 @@ function get_post_custom_keys() {
}
function get_post_custom_values($key='') {
function get_post_custom_values( $key = '' ) {
global $id, $post_meta_cache;
return $post_meta_cache[$id][$key];
if ( empty($key) )
return $post_meta_cache[$id];
else
return get_post_custom();
}