Created
June 17, 2010 16:38
-
-
Save iammerrick/442371 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function is_news() | |
{ | |
global $wp_query; | |
$categories = get_the_category($wp_query->post->ID); | |
foreach($categories as $category) | |
{ | |
if($category->cat_ID) | |
{ | |
return true; // Kenneth will this exit the is_news function and return true or just the foreach closure? | |
} | |
} | |
return false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment