get_comments()
get
get_comments( string|array $args = ” ): WP_Comment[]|int[]|int
Lấy danh sách bình luận của bài viết.
function get_comments( $args = '' ) {
$query = new WP_Comment_Query();
return $query->query( $args );
}