Hello all :)
It is possible to show last 5 news from one category?
Something like this.
[News from celebrities category]
> Lady Gaga: In a Flash [26 comments]
> Zoe Saldana Is Engaged! [10 comments]
.......
Thanks for reply
Hello all :)
It is possible to show last 5 news from one category?
Something like this.
[News from celebrities category]
> Lady Gaga: In a Flash [26 comments]
> Zoe Saldana Is Engaged! [10 comments]
.......
Thanks for reply
Essentially put this before your loop:
<?php query_posts('order=ASC&showposts=5&cat=10'); ?>
It lists oldest posts first, and shows the first five oldest posts (from the category with an ID of 10)
This topic has been closed to new replies.