apply_filters( 'comments_array', array $comments, int $post_id )

Filters the comments array.


Parameters

$comments array
Array of comments supplied to the comments template.
$post_id int
Post ID.

Top ↑

More Information

Used inside comments_template that allows you to catch all the comments going through the query for the post.


Top ↑

Source

File: wp-includes/comment-template.php. View all references

$wp_query->comments = apply_filters( 'comments_array', $comments_flat, $post->ID );


Top ↑

Changelog

Changelog
Version Description
2.1.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.