the_comments_navigation
Displays navigation to next/previous set of comments, when applicable.
Description
the_comments_navigation( (array) $args = array() );
Parameters (1)
- 0. $args — Optional. (array) =>
array()
- See
get_the_comments_navigation(…)
for available arguments. Default empty array.
Usage
if ( !function_exists( 'the_comments_navigation' ) ) { require_once ABSPATH . WPINC . '/link-template.php'; } // See get_the_comments_navigation() for available arguments. Default empty array. $args = array(); // NOTICE! Understand what this does before running. $result = the_comments_navigation($args);
Defined (1)
The function is defined in the following location(s).
- /wp-includes/link-template.php
- function the_comments_navigation( $args = array() ) {
- echo get_the_comments_navigation( $args );
- }