wpseek.com
WordPress开发者和主题制作者的搜索引擎



get_approved_comments › WordPress Function

Since2.0.0
已弃用n/a
get_approved_comments ( $post_id, $args = array() )
参数: (2)
  • (int) $post_id The ID of the post.
    Required: Yes
  • (array) $args { Optional. See WP_Comment_Query::__construct() for information on accepted arguments. @type int $status Comment status to limit results by. Defaults to approved comments. @type int $post_id Limit results to those affiliated with a given post ID. @type string $order How to order retrieved comments. Default 'ASC'. }
    Required: No
    默认: array()
返回:
  • (WP_Comment[]|int[]|int) The approved comments, or number of comments if `$count` argument is true.
定义在:
文档:
Change Log:
  • 4.1.0

Retrieves the approved comments for a post.



源码

function get_approved_comments( $post_id, $args = array() ) {
	if ( ! $post_id ) {
		return array();
	}

	$defaults    = array(
		'status'  => 1,
		'post_id' => $post_id,
		'order'   => 'ASC',
	);
	$parsed_args = wp_parse_args( $args, $defaults );

	$query = new WP_Comment_Query();
	return $query->query( $parsed_args );
}