previous_posts_link( string $label = null )

Displays the previous posts page link.


Parameters

$label string Optional
Previous page link text.

Default: null


Top ↑

More Information

If you need the values for use in PHP, use get_previous_posts_link() .

Because post queries are usually sorted in reverse chronological order, next_posts_link() usually points to older entries (toward the end of the set) and previous_posts_link() usually points to newer entries (toward the beginning of the set).


Top ↑

Source

File: wp-includes/link-template.php. View all references

function previous_posts_link( $label = null ) {
	echo get_previous_posts_link( $label );
}


Top ↑

Changelog

Changelog
Version Description
0.71 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.