apply_filters( 'comments_number', string $output, int $number )

Filters the comments count for display.


Description

Top ↑

See also


Top ↑

Parameters

$output string
A translatable string formatted based on whether the count is equal to 0, 1, or 1+.
$number int
The number of post comments.

Top ↑

Source

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

return apply_filters( 'comments_number', $output, $number );


Top ↑

Changelog

Changelog
Version Description
1.5.0 Introduced.

Top ↑

User Contributed Notes

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