From 0ca2b56f1ec10ea0e28926bea1266ce4ba400561 Mon Sep 17 00:00:00 2001 From: matt Date: Tue, 17 Jan 2006 01:01:17 +0000 Subject: [PATCH] get_post_custom_values update. Fixes #2160 git-svn-id: http://svn.automattic.com/wordpress/trunk@3448 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/template-functions-post.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/wp-includes/template-functions-post.php b/wp-includes/template-functions-post.php index 673abcd01..eaf269615 100644 --- a/wp-includes/template-functions-post.php +++ b/wp-includes/template-functions-post.php @@ -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(); }