如何从循环外部的wp_list_Comments中获取特定数据?

时间:2013-10-11 作者:Dhans

我需要一些帮助,对wordpress很陌生。

我只需要评论标题和评论日期wp_list_comments 函数,在将$postid声明为全局变量后从外部循环调用。

现在,我正在获取有关评论的所有信息,如作者、日期、标题、评论等。那么,我如何才能获得上述特定细节?

1 个回复
最合适的回答,由SO网友:dipali 整理而成

使用get_comments 作用通过Post_id 作为参数。参见下面的示例

<?php 
$comments = get_comments(\'post_id=15\');
foreach($comments as $comment) :
    echo($comment->comment_author);
endforeach;
?>
有关更多详细信息,请查看以下链接

http://codex.wordpress.org/Function_Reference/get_comments

结束