我想过滤评论类型,因为我使用了 WooThemes 的 Sensei,这个插件将活动记录在评论中,并且 Sensei 评论与常规评论一起出现。
我将参数“类型”放在 get_comments 中但没有成功。
我想过滤评论类型,因为我使用了 WooThemes 的 Sensei,这个插件将活动记录在评论中,并且 Sensei 评论与常规评论一起出现。
我将参数“类型”放在 get_comments 中但没有成功。
您可以使用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' ) ); ?>
这对我有用,希望这对某人有所帮助。
如果您正在使用,get_comments()
那么您可以简单地使用$comment->comment_type
仅检查空类型(普通注释)