the_comments_navigation

The timeline below displays how wordpress function the_comments_navigation has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 4.6

/**
 * Displays navigation to next/previous set of comments, when applicable.
 *
 * @since 4.4.0
 *
 * @param array $args See get_the_comments_navigation() for available arguments. Default empty array.
 */
function the_comments_navigation($args = array())
{
    echo get_the_comments_navigation($args);
}

WordPress Version: 4.4

/**
 * Displays navigation to next/previous set of comments when applicable.
 *
 * @since 4.4.0
 *
 * @param array $args See {@see get_the_comments_navigation()} for available arguments.
 */
function the_comments_navigation($args = array())
{
    echo get_the_comments_navigation($args);
}