0

我想过滤评论类型,因为我使用了 WooThemes 的 Sensei,这个插件将活动记录在评论中,并且 Sensei 评论与常规评论一起出现。

我将参数“类型”放在 get_comments 中但没有成功。

4

2 回答 2

1

您可以使用wp_list_comments而不是get_comments 阅读文档: http ://codex.wordpress.org/Function_Reference/wp_list_comments

按类型“comment”过滤评论,默认为 all :

<?php wp_list_comments( array( 'type' => 'comment', 'callback' => 'my_theme_comments', 'style' => 'ol' ) ); ?>

这对我有用,希望这对某人有所帮助。

于 2013-12-30T08:43:22.333 回答
0

如果您正在使用,get_comments()那么您可以简单地使用$comment->comment_type仅检查空类型(普通注释)

于 2014-03-05T14:57:33.537 回答