开发者

using wordpress category plugin - how do i list in order=desc?

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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜