Forum Replies Created

Viewing 1 replies (of 1 total)
  • astella2004hotmailcom

    (@astella2004hotmailcom)

    This worked for me:

    <?
    $recentPosts = new WP_Query();
    $recentPosts->query('orderby=date&cat=20');
    if ($recentPosts->have_posts()) : ?>
    <?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?
    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><b><?php the_title(); ?></b></a>
    <?php the_content('Read the rest of this entry &raquo;'); ?>
    <?php endwhile; ?>
    <?php else : ?>
    <h2 class="center">Not Questions Found.</h2>
    <?php endif; ?>
Viewing 1 replies (of 1 total)