Forum Replies Created

Viewing 1 replies (of 1 total)
  • If you’re not afraid to get your hands dirty with a little bit of PHP, this can be done with the following slice of code:

    <?php
    query_posts('cat=' .$catNumber. '&showposts=1');
    while (have_posts()) : the_post();
    ?>
    
    // Use template tags to Do Stuff.
    
    <?php endwhile; ?>

    That the most recent post from category number $catNumber.

Viewing 1 replies (of 1 total)