我用它来获取自定义主题的wordpress评论:
get_comments( array('status' => 'aprove','order' => 'ASC', 'post_id' => $newpost->ID) );
除了等待审核的评论未被过滤之外,一切都有效。
关注代码:http://codex.wordpress.org/Function_Reference/get_comment 'status' => 'approve'
应该过滤掉那些但似乎不会发生。
我没有以正确的方式使用它吗?
答案 0 :(得分:3)
尝试使用两个P的approve
!
get_comments( array('status' => 'approve','order' => 'ASC', 'post_id' => $newpost->ID) );
这是the docs page for get_comments(您链接到get_comment
单数。)
答案 1 :(得分:0)
它适用于我。您可以使用以下代码在段落中显示已批准的评论。
<?php foreach (get_comments(array('status' => 'approve','order' => 'ASC', 'post_id' => $newpost->ID)) as $comment): ?>
<div class="comment-show"><h4><?php echo $comment->comment_author; ?> said: </h4> <p>"<?php echo $comment->comment_content; ?>"</p></div>
<?php endforeach; ?>
我已在以下网站中使用以显示评论 http://rumpa07cse.com/how-to-index-your-website-and-blog-very-quick/