Show Limited Number of Posts in Sepcific Category on Home
-
Hello all,
I want to show a specific number of post title links on the index to a single category.
I have had success with showing the linked titles to a specific category using this:
<?php if ( is_home()) { ?>
<?php if(in_category(2)) : ?>
<h2>Check Out Recent Posts</h2>
<?php while (have_posts()) : the_post(); ?>
<ul>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Read: <?php the_title(); ?>"><?php the_title(); ?></a></li>
</ul>
<?php endwhile; ?>
<?php endif; ?>
<?php } ?>And I can limit the numbers with this:
<?php if ( is_home()) { ?>
<h2>Check Out Recent Posts</h2>
<ul><?php get_archives('postbypost','4','custom','<li>','</li>'); ?></ul>
<?php } ?>But I’ve had no success combining the two, say showing the linked title to the 4 most recent posts in category 2 on the index.
Can someone help please?
Mike
- The topic ‘Show Limited Number of Posts in Sepcific Category on Home’ is closed to new replies.