如何获得最后一次批准的评论的帖子ID? 时间:2012-02-26 作者:Marton 你能帮我做点简单的事吗?如何获取上次批准评论的帖子id?我想把它赋给一个变量。提前非常感谢! 1 个回复 SO网友:weston deboer <?php $recent_comments = get_comments( array( \'number\' => 1, \'status\' => \'approve\' ) ); foreach($recent_comments as $comment) : $latest_postid_with_comment = $comment->comment_post_ID; endforeach; ?> 可能是将此代码压缩为更小的内容的方法。但这会奏效的。 结束 文章导航