最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Arrange BBpress replies in reverse order

programmeradmin0浏览0评论

I want to Sort topic replies in descending order for all bbPress Topics to show the last reply in first postion.
There is an old plugin that doesn't work anymore:
Is there any code to add it in theme's function to do this?

I want to Sort topic replies in descending order for all bbPress Topics to show the last reply in first postion.
There is an old plugin that doesn't work anymore: https://wordpress/plugins/bbpress-sort-topic-replies
Is there any code to add it in theme's function to do this?

Share Improve this question asked Jun 22, 2020 at 23:43 SadeghSadegh 1771 silver badge9 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 2

Here is the snippet to reverse replies order for the single topic:

add_filter('bbp_before_has_replies_parse_args', 'dev4press__change_replies_order');
function dev4press__change_replies_order($r) {
  $r['order'] = 'DESC';
  return $r;
}
发布评论

评论列表(0)

  1. 暂无评论