开发者

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

开发者 https://www.devze.com 2023-01-13 02:52 出处:网络
I\'m using this plugin http://watershedstudio.com/portfolio/software-developmen开发者_StackOverflow中文版t/wordpress-category-posts-plugin/

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

精彩评论

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