[7064] introduces an extra query for each call to in_category(). Avoid the query if an int is passed.

git-svn-id: http://svn.automattic.com/wordpress/trunk@7904 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-05-07 19:12:44 +00:00
parent 87db175abe
commit d8ee8494be
1 changed files with 6 additions and 3 deletions

View File

@ -185,9 +185,12 @@ function in_category( $category ) { // Check if the current post is in the given
if ( empty($category) )
return false;
$cat_ID = get_cat_ID($category);
if ( $cat_ID )
$category = $cat_ID;
// If category is not an int, check to see if it's a name
if ( ! is_int($category) ) {
$cat_ID = get_cat_ID($category);
if ( $cat_ID )
$category = $cat_ID;
}
$categories = get_object_term_cache($post->ID, 'category');
if ( false === $categories )