0

我用它来为我的自定义主题获取 wordpress 评论:

get_comments( array('status' => 'aprove','order' => 'ASC', 'post_id' => $newpost->ID) );

除了等待审核的评论不会被过滤之外,一切正常。遵循法典:http 'status' => 'approve' ://codex.wordpress.org/Function_Reference/get_comment应该过滤掉那些,但这似乎没有发生。

我没有正确使用它吗?

4

2 回答 2

5

approve用两个P试试!

get_comments( array('status' => 'approve','order' => 'ASC', 'post_id' => $newpost->ID) );

这是get_comments 的文档页面(您链接到get_comment单数。)

于 2012-09-18T18:31:37.697 回答
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/

于 2016-06-26T05:53:57.887 回答