get_comments

函数
get_comments ( $args = '' )
参数
  • (string|array) $args Optional. Array or string of arguments. See WP_Comment_Query::__construct() for information on accepted arguments. Default empty.
    Required:
    Default: (empty)
返回值
  • (WP_Comment[]|int[]|int) List of comments or number of found comments if `$count` argument is true.
定义位置
相关方法
get_commentget_comment_idget_comment_classedit_commentget_comments_link
引入
2.7.0
弃用
-

get_comments: 这个函数用来检索一个给定文章或页面的评论数组。评论可以根据各种标准进行过滤,如状态,父,类型等。

检索评论列表。

评论列表可以是整个博客的,也可以是个别文章的。

function get_comments( $args = '' ) {
	$query = new WP_Comment_Query;
	return $query->query( $args );
}

常见问题

FAQs
查看更多 >