函数以获取关于1个帖子的所有评论的列表

时间:2016-05-25 作者:Kim Nauwelaers

我想创建一个页面,访问者可以在其中提供一个帖子的参考(ID),当他们单击提交时,他们可以获得该特定帖子上所有给定评论的概述。

我想我必须在submit按钮后面创建一个函数?

谢谢你帮助我。我对Wordpress很陌生。

KR,Kim

1 个回复
SO网友:Ismail

您应该使用get_comments( $args ) 并在参数中添加post ID($args) 阵列:

$post_id = 1; // post ID here from the submitted data
$comments = get_comments(array( \'post_id\' => (int) $post_id ));
// dump the comments found
print_r( $comments );
这会给你一个评论列表。希望这有帮助。