How to make Front Page Display Only One Category?
OK, thanks. That worked.
I a running WordPress 2.3.2 with prosumer-10 theme
I edited index.php in directory
wordpress/wp-content/themes/prosumer-10
ORIGINAL index.php
1 2 3 4 |
<?php get_header(); ?> <div id="content"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> |
NEW index.php
1 2 3 4 5 |
<?php get_header(); ?> <div id="content"> <?php query_posts('showposts=20&cat=3'); ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> |