WordPress Version: 4.6
/**
* Displays the previous posts page link.
*
* @since 0.71
*
* @param string $label Optional. Previous page link text.
*/
function previous_posts_link($label = null)
{
echo get_previous_posts_link($label);
}
The timeline below displays how wordpress function previous_posts_link has changed across different WordPress versions. If a version is not listed, refer to the next available version below.
/**
* Displays the previous posts page link.
*
* @since 0.71
*
* @param string $label Optional. Previous page link text.
*/
function previous_posts_link($label = null)
{
echo get_previous_posts_link($label);
}
/**
* Display the previous posts page link.
*
* @since 0.71
*
* @param string $label Optional. Previous page link text.
*/
function previous_posts_link($label = null)
{
echo get_previous_posts_link($label);
}
/**
* Display the previous posts page link.
*
* @since 0.71
* @uses get_previous_posts_link()
*
* @param string $label Optional. Previous page link text.
*/
function previous_posts_link($label = null)
{
echo get_previous_posts_link($label);
}