如何获得最后一次批准的评论的帖子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;
?>
可能是将此代码压缩为更小的内容的方法。但这会奏效的。

结束

相关推荐

将NEXT/PREVICE_POSTS_LINK与自定义搜索配合使用

我的网站上有一些不同的搜索:“物种概况”(自定义帖子类型搜索)术语表(自定义帖子类型搜索)目前我正在使用search.php; $_POST[\"type\"] 确定已使用的搜索,以及$_POST[\"s\"] 对于查询条件:<?php if (isset($_POST[\"s\"])) { $search_term = $_POST[\"s\"]; } if (isset($_POST[\"type\"])) {&#