我得到了这么简单的一句话:get_comments( 'post_id='.$newpost->ID.'');
基于http://codex.wordpress.org/Function_Reference/get_comments
它工作正常,但我想以不同的顺序订购帖子。 我已经尝试了很多方法来写它但它似乎永远不会起作用。
我如何添加其中一个参数?:
$ orderby(string)(可选)设置用于对注释进行排序的字段。 默认值:comment_date_gmt $ order(字符串)(可选)如何排序
$的OrderBy。有效值:'ASC' - 升序(从最低到最高)。 'DESC' - 降序(从最高到最低)。默认值:DESC
感谢您的帮助!
答案 0 :(得分:1)
使用变量创建一个数组:
get_comments( array('orderby' => 'ID', 'order' => 'ASC', 'post_id' => $newpost->ID) );