Forums

[resolved] Exclusive Category (2 posts)

  1. Sazuka
    Member
    Posted 1 year ago #

    I copied this code to list me down the latest 30 Posts with excerpts.
    My problem is how can I make it that it shows only category 2 and not all Posts in the category.
    I hope someone can help, as im not very php inspired :ΓΌ

    <?php $recent_query = new WP_Query(); ?>
    <?php $recent_query->query('showposts=30'); $ids = array(); ?>
    
    <?php while($recent_query->have_posts()) : $recent_query->the_post();
     $ids[] = get_the_ID();
    ?>
    
                <a href="<?php the_permalink(); ?>">
                <?php the_title(); ?>
    
                </a> <?php the_excerpt(); ?>
    
    <?php endwhile; ?>
  2. esmi
    Theme Diva & Forum Moderator
    Posted 1 year ago #

    Try $recent_query->query('posts_per_page=30&cat=2');.

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.