我想过滤评论类型,因为我使用Sensei of WooThemes,这个插件会在评论中记录活动,而Sensei评论会出现常规评论。
我把论证'键入'在get_comments中没有成功。
答案 0 :(得分:1)
您可以使用 wp_list_comments 代替 get_comments 阅读文档:http://codex.wordpress.org/Function_Reference/wp_list_comments
按类型“评论”过滤评论,默认为全部:
<?php wp_list_comments( array( 'type' => 'comment', 'callback' => 'my_theme_comments', 'style' => 'ol' ) ); ?>
这对我有用,希望这对某人有所帮助。
答案 1 :(得分:0)
如果您使用的是get_comments()
,那么您只需使用$comment->comment_type
来检查空类型(正常评论)