I'm using this plugin
http://watershedstudio.com/portfolio/software-developmen开发者_StackOverflow中文版t/wordpress-category-posts-plugin/
that uses this php
works just fine but it lists the category posts alphabetically - how can i list them so that the newest ones are listed first?
In the plugin change line 13 to
$posts = get_posts(array('category' => $catID, 'numberposts' => -1, 'order' => ASC, 'orderby' => date));
I just changed title to date.
精彩评论