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

git-svn-id: https://develop.svn.wordpress.org/trunk@7904 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-05-07 19:12:44 +00:00
parent a2e8b5bfd7
commit 007689ab77
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 )