views:

19

answers:

1

I'm using this plugin

http://watershedstudio.com/portfolio/software-development/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?

A: 

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.

Julian