next_comments_link

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

WordPress Version: 4.6

/**
 * Displays the link to the next comments page.
 *
 * @since 2.7.0
 *
 * @param string $label    Optional. Label for link text. Default empty.
 * @param int    $max_page Optional. Max page. Default 0.
 */
function next_comments_link($label = '', $max_page = 0)
{
    echo get_next_comments_link($label, $max_page);
}

WordPress Version: 4.3

/**
 * Display the link to next comments page.
 *
 * @since 2.7.0
 *
 * @param string $label    Optional. Label for link text.
 * @param int    $max_page Optional. Max page.
 */
function next_comments_link($label = '', $max_page = 0)
{
    echo get_next_comments_link($label, $max_page);
}

WordPress Version: 3.7

/**
 * Display the link to next comments page.
 *
 * @since 2.7.0
 *
 * @param string $label Optional. Label for link text.
 * @param int $max_page Optional. Max page.
 */
function next_comments_link($label = '', $max_page = 0)
{
    echo get_next_comments_link($label, $max_page);
}