• Resolved rlyeh

    (@rlyeh)


    Hello,
    By default, WordPress shows all entries from all categories, or static page. Is there any way to display entries from just one category?

Viewing 1 replies (of 1 total)
  • <?php query_posts('category_name=special_cat&showposts=10'); ?>
    
      <?php while (have_posts()) : the_post(); ?>

    in your index.php file.

Viewing 1 replies (of 1 total)
  • The topic ‘Specific category on main page’ is closed to new replies.