the_comments_pagination()
Displays a paginated navigation to next/previous set of comments, when applicable.
No Hooks.
Return
null
. Nothing.
Usage
the_comments_pagination( $args );
- $args(array)
- See get_the_comments_pagination() for available arguments.
Default: empty array
Changelog
Since 4.4.0 | Introduced. |
Code of the_comments_pagination() the comments pagination WP 5.9.3
function the_comments_pagination( $args = array() ) { echo get_the_comments_pagination( $args ); }