im working on wordpress theme and everything goes fine but i have this problem
i make a php page "taxonomy.php" it shows custom taxonomy posts
the problem i have if i visit empty taxonomy it shows me a posts from other taxonomy insted of showing error message
the code i use to display:
<?php
get_header();
$temp = $wp_query;
$wp_query = null;
$wp_query = new WP_Query();
$wp_query->query('showposts=9&post_type=covers'.'&paged='.$paged);
$term = $wp_query->queried_object;
?>
<div id="primary" class="site-content span12">
<div id="content" class="entry-content" role="main">
<?php
$product_terms = wp_get_object_terms($post->ID, 'cover_category');
if(!empty($product_terms)){
if(!is_wp_error( $product_terms )){
foreach($product_terms as $term){
echo '<h4 style="color:#cb2027">'.$term->name.'</h4>';
//Category Desciprion
echo '<h6 style="color:#cb2027">'.term_description($term->term_id, 'cover_category').'</h6>';
}
}
}
?>
<?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<h5><?php the_title(); ?></h5>
<?php endwhile; ?>
<?php get_footer(); ?>
Now if i visit this
http://localhost/wp/?cover_category=as
-> this taxonomy as have 6 posts and show them correct
if i visit this http://localhost/wp/?cover_category=wawa
-> this taxonomy wawa have 0 posts and it show posts from as taxonomy
This is an example for default category page: