Thread Starter
krezel
(@krezel)
Figured it out. I ended up just adding this code at the very beginning of the loop:
<pre>
<?php
// Here we’ll check to make sure its not in the photoblog category…
$cat_arr = get_the_category();
if( $cat != “2” && count($cat_arr) == 1 && $cat_arr[0]->category_id == “2” ) {
continue;
}
?>
</pre>
Its a hack, but it works.