• Hi All,

    How to make Latest Post from specific category?
    example I have Lorem category and Ipsum Category, and I want make a list my Latest Post from Lorem category only.

    How to do that? I try to looking around on wp_get_archives but I can’t found parameter to strict from some category

    Please advice me

Viewing 3 replies - 1 through 3 (of 3 total)
  • i need this too

    me too.

    Anyone get this working?

    My guess is to do it manually, with a query and the loop. Something like:

    <?php rewind_posts(); ?>
    <?php query_posts('category_name=yaddayadda'); ?>
        <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    	<h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
    <?php endwhile; endif; ?>

    This has nothing to do with “Latest Post” plugin though. It certainly could be easily modified to go grab the lastest x posts…

    seej

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Latest Post from specific category.’ is closed to new replies.