WordPress“wp_list_comments”自定义顺序

时间:2010-11-21 20:15:50

标签: php wordpress

我正在使用WordPress 3.0.1并希望使用评级自定义字段从帖子中订购评论。

这可能吗?我已经使用wp_list_comments的回调属性来自定义注释的外观。

不幸的是,这样我只能逐个访问注释,不会影响所有结果数组的顺序。

我已经拥有一张包含用户所有投票的表格。

提前致谢。

2 个答案:

答案 0 :(得分:0)

试试$comments = get_comments('postId=x');。它应该由注释ID索引。然后,您可以在表格中查找评论等级。

答案 1 :(得分:0)

// get comments of post 1234
$comments = get_comments( array('post_id' => 1234) );

// ... order your comments collection using php (eg. usort) here ...

// print your comments
wp_list_comments( array( 'callback' => 'woocommerce_comments' ), $comments);