previous_comments_link

The timeline below displays how wordpress function previous_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 previous comments page.
 *
 * @since 2.7.0
 *
 * @param string $label Optional. Label for comments link text. Default empty.
 */
function previous_comments_link($label = '')
{
    echo get_previous_comments_link($label);
}

WordPress Version: 3.7

/**
 * Display the previous comments page link.
 *
 * @since 2.7.0
 *
 * @param string $label Optional. Label for comments link text.
 */
function previous_comments_link($label = '')
{
    echo get_previous_comments_link($label);
}