Eklenti olarak bilmiyorum ama query post onksiyonuyla yapabilirsin.
query_posts('cat=3')
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
and ends here:
Bu üstteki kod anasayfa da sadece 3. kategoriye ait yazıları sergilenmesini sağlar.
Bundan bir tane daha koyarsan o kategoride ki yazıları çeker.
//5 numaralı kategoriyi çeker
query_posts('cat=5')
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
and ends here:
//8 numaralı kategoriyi seçer
query_posts('cat=5')
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
and ends here:
query post fonksiyonunu burdan inceleyebilirsin.