
Recent Comments
by Automattic on WordPress.org
Creates functions to assist in displaying a list of the most recent comments. Provides more configurability than the widget that comes with WordPress.
Configuration
You may pass parameters when calling the function to configure some of the options. Parameters are accepted only in the query-string-style.
list_most_recent_comments()
In addition to the parameters that get_comments() and get_most_recent_comments()
(see below) accept, this function accepts the following parameters:
excerpt_words
— The number of words from the comment to displayexcerpt_chars
— Or alternately the number of characters from the comment to displaycomment_format
— Allows you to pick from two predefined display formats:
- Comment Author on Post Title
- Comment Author: This is the comment excerpt
Example:
get_most_recent_comments()
A more powerful version of get_comments(). It accepts the same parameters as well as the following ones:
passworded_posts
— Boolean to control showing comments on passworded posts or not. Defaults tofalse
.showpings
— Boolean to control showing pings and trackbacks or not. Defaults tofalse
.post_types
— Array of post types to include comments from. Defaults to posts and pages:array( 'post', 'page' )
post_statuses
— Array of post statuses to include comments from. Defaults to published posts and static pages:array( 'publish', 'static' )
Arguments should likely be passed as an array instead of a string.
Example:
true,
'post_types' => array( 'post', 'page', 'foobar' ),
) );
?>
Active installations200+
Weekly downloads
17-29.17%
Version2.1
Last updated2/10/2021
WordPress version
Tested up to
Tags
commentslistrecent