线程评论:如何先按最后一个活动来显示线程? 时间:2020-12-25 作者:jberculo 大家好,节日快乐!我在一个页面上启用了线程评论。目前,注释按线程启动的时间从新到旧排序:-Comment 3 -Comment 2 -Comment 5 -Comment 1 -Comment 4 实际上,我希望最后一个活动线程是第一个线程,这样列表就会类似于:-Comment 2 -Comment 5 -Comment 1 -Comment 4 -Comment 3 如何做到这一点? 2 个回复 SO网友:Q Studio 只需转到“设置”>;讨论(>);其他注释设置(>);然后查找下拉菜单,可以反转顺序。根据本视频:https://premium.wpmudev.org/blog/wp-content/uploads/2014/01/New-comments-first.webm SO网友:HK89 只需在主题函数中添加此代码。php文件。function wpb_reverse_comments($comments) { return array_reverse($comments); } add_filter(\'comments_array\',\'wpb_reverse_comments\'); 此代码使用comments\\u数组过滤器反转WordPress站点上的注释显示。 文章导航