Forums

Posts list by category (2 posts)

  1. a_afshar
    Member
    Posted 3 years ago #

    i would like to make a coulumn with posts list of one of my categories,

    what can i do?

  2. davedotcom
    Member
    Posted 3 years ago #

    Use this:


    <ul>
    <?php
    $posts = get_posts('numberposts=5&category=1');
    foreach($posts as $post) :
    ?>
    <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
    <?php endforeach; ?>
    </ul>

    You can specify the number of posts you want to get and from which category ID. Make sure that you don't query more posts than are actually in the category because you'll get an error message. There are also other filters for get_posts(). You can read more about it here:

    http://codex.wordpress.org/Template_Tags/get_posts

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.