css adlı üyeden alıntı: mesajı görüntüle
Merhaba arkadaşlar,

<?php if ( have_posts()) : ?>
<?php $metinsarac = new WP_Query("cat='13'&showposts=5"); while($metinsarac ->have_posts()) : $metinsarac ->the_post();?>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<?php endwhile; ?>
<?php endif; ?>

Şu şekilde bir kodum var ve 13 id li kategorinin içindeki konu başlıklarını çekiyorum.

Bunu single.php de yaptığımda tüm diğer kategorilerde de görüyorum sadece 13 idli kategoride sadece 13 kategoriye ait yazı başlıklarını çekmek istiyorum.

Nasıl yapabiliriz?
<?php if ( have_posts() && in_category( '13' ) ) : ?>
<?php $metinsarac = new WP_Query("cat='13'&showposts=5"); while($metinsarac ->have_posts()) : $metinsarac ->the_post();?>
<a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
<?php endwhile; ?>
<?php endif; ?>
Söylediklerinizi doğru anladıysam bu şekilde yaparsanız olacaktır.