single.php dosyasında sadece bir kategori tanımlandığı için içeriğin altında o kategoriye ait yazılar yer alıyor. Bunu içeriğin yer aldığı kategorilerdeki yazıların gösterilmesi için ne yapmalıyız? İlgili bölümün kodları aşağıda...

<div class="singlebaslikana">Son Haberler</div> <div class="singlebaslikortaana"> 
			
<?php $recent = new WP_Query("showposts=12&cat=1"); while($recent->have_posts()) :
$recent->the_post();?>	
	  
<div class="singlehaber"> <?php if( get_post_meta($post->ID, "Thumbnail", true) ): ?>    				    
<a href="<?php the_permalink() ?>" rel="bookmark"><img src="<?php echo get_post_meta($post->ID, "Thumbnail", true); ?>" alt="<?php the_title(); ?>" /></a>    				
<?php else: ?>    				   	
<a href="<?php the_permalink() ?>" rel="bookmark">
<img src="<?php bloginfo('template_url'); ?>/images/kirita.png" alt="<?php the_title(); ?>" /></a>    				
<?php endif; ?>	 <h2><a href="<?php the_permalink() ?>" rel="bookmark">   <?php if (strlen($post->post_title) > 50) {
echo mb_substr(the_title($before = '', $after = '', FALSE), 0, 50) . '...'; } else {
the_title();
} ?> </a></h2> 
<div class="entry"> <a href="<?php the_permalink() ?>"><?php the_content_limit(70, ""); ?></a> </div> </div>    <?php endwhile; ?>
</div> <div class="singlebaslikaltana"></div>  

</div>