get_comments( string|array $args = '' )
Retrieve a list of comments.
Description Description
The comment list can be for the blog as a whole or for an individual post.
Parameters Parameters
- $args
-
(string|array) (Optional) Array or string of arguments. See WP_Comment_Query::__construct() for information on accepted arguments.
Default value: ''
Return Return
(int|array) List of comments or number of found comments if $count
argument is true.
Source Source
File: wp-includes/comment.php
function get_comments( $args = '' ) { $query = new WP_Comment_Query; return $query->query( $args ); }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Show comment counts of a post
Example
Show last 5 unapproved comments
Show comment counts of a user
Show comments of a user
Get comments from last 4 weeks