When making a query of multiple taxonomies, the results come up fine if there's a match found. However if no match is found, the query prints out ALL of my posts. Am I doing something wrong here?
I'm using wordpress 3.0.1 and query multiple taxonomies 1.3alpha
(also used 1.2 with same results)
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args=array(
'destinations' => 'palawan',
'classification' => 'attractions',
'paged' => $paged,;
query_posts($args);
if ( have_posts() ) : while ( have_posts() ) : the_post();
query_loop_list(); ?>
<?php endwhile; ?>
<center><?php wp_pagenavi(); ?></center>
<?php else: ?>
<?php endif; ?>
<?php wp_reset_query(); ?>