Forums

Looking for a plugin (2 posts)

  1. ladycrow
    Member
    Posted 3 years ago #

    I'm looking for a plugin (or widget) that will be used in my sidebar to show the most recent updates by category (or tag, I'm not picky). I have 2 sections that I'd like to show the most recent 4 - 5 post titles.

    All the plugins I've found seem to be outdated or not customizable enough. Any suggestions?

  2. ladycrow
    Member
    Posted 3 years ago #

    All right, I found a way to do this with categories - and not even a plugin! Pretty easy. I'lk post that method..

    <?php $recent = new WP_Query("cat=3&showposts=3"); while($recent->have_posts()) : $recent->the_post();?>
    <li><a href="<?php the_permalink() ?>" rel="bookmark">
    <?php the_title(); ?>
    </a></li>
    <?php endwhile; ?>

    but I'm wondering if there's any way to do this with tags? That would work better with another plugin I am using

Topic Closed

This topic has been closed to new replies.

About this Topic