在没有插件的情况下在循环外显示最近的评论 时间:2013-07-22 作者:Azis 所以我想把我博客上最近的10条评论显示在我的主页上。有人能告诉我怎么做吗?如果可能,最好不使用插件。。。非常感谢。 1 个回复 SO网友:chrisguitarguy 你可以用get_comments.<?php $comments = get_comments(array( \'number\' => 10, // 10 comments \'status\' => \'approve\', // only approved comments \'post_status\' => \'publish\', // only on published posts )); // do stuff with $comments 您可以看到核心本身是如何在recent comments widget. 结束 文章导航