WordPress’te belirli kategorideki yazıları listelemek için aşağıdaki kodu kullanabilirsiniz.
cat_ID olaran ID kısmına yazılarını göstermek istediğiniz kategori ID’sini,
showposts=10 kısmına göstermek istediğiniz yazı adetini yazabilirsiniz.
[codesyntax lang=”php”]
<?php foreach((get_the_category()) as $cat) { ?> <p><?php $my_query = new WP_Query("cat=$cat->cat_ID&showposts=10"); ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?> <h2 id="post-<?php the_ID(); ?>"> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"> <?php the_title(); ?></a></h2> <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small> <?php endwhile; ?> </p> <?php } ?>
[/codesyntax]