Update in_category to use the new object_term_cache, it wasn't so much with the working before.

git-svn-id: http://svn.automattic.com/wordpress/trunk@5693 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
matt 2007-06-13 00:16:33 +00:00
parent 6dca00cae6
commit 81dd1f1737
1 changed files with 3 additions and 3 deletions

View File

@ -155,10 +155,10 @@ function get_the_category_list($separator = '', $parents='') {
return apply_filters('the_category', $thelist, $separator, $parents);
}
function in_category($category) { // Check if the current post is in the given category
global $category_cache, $post, $blog_id;
function in_category( $category ) { // Check if the current post is in the given category
global $object_term_cache, $post, $blog_id;
if ( isset( $category_cache[$blog_id][$post->ID][$category] ) )
if ( isset( $object_term_cache[$blog_id][$post->ID]['category'][$category] ) )
return true;
else
return false;