Exclude category AND limit posts?
-
I am using code I found online to exclude a category from a listing of the most recent entry titles. Now I want to only show the last three entries as well. How do I include the limitation to my code?
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( !(in_category('18')) ) { ?>
<a>(<?php the_time('M. d'); ?>) <?php the_title(); ?></a>
<?php } ?>
<?php endwhile; else: ?>
Sorry, no posts matched your criteria.
<?php endif; ?>Thanks so much for your help!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Exclude category AND limit posts?’ is closed to new replies.