Restrict the_excerpt_reloaded by category
-
I am using the following code to display excerpts on my front page. I would like to only display excerpts from category 6, yet my page (www.onebigbang.org/DEV) is displaying all posts.
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if (in_category('6')); ?>
<p class="subtitle"><?php the_title(); ?><p>
<?php the_excerpt_reloaded(120, '<a><img>', 'filter_type', TRUE, 'Read More', FALSE, 2, TRUE); ?>
<p class="postmetadata">Posted in <?php the_category(', '); ?></p>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
Also, using this code, how can I define how many excerpts I want to display?
Thanks in advance for answers to what I suspect are dumb questions…
- The topic ‘Restrict the_excerpt_reloaded by category’ is closed to new replies.