get_previous_posts_page_link

Advertisement

Summery Summery

Retrieves the previous posts page link.

Syntax Syntax

get_previous_posts_page_link()

Description Description

Will only return string, if not on a single page or post.

Backported to 2.0.10 from 2.1.3.

Return Return

(string|void) The link for the previous posts page.

Source Source

File: wp-includes/link-template.php

 */
function get_previous_posts_page_link() {
	global $paged;

	if ( ! is_single() ) {
		$nextpage = intval( $paged ) - 1;
		if ( $nextpage < 1 ) {
			$nextpage = 1;
		}
		return get_pagenum_link( $nextpage );
	}

Advertisement

Changelog Changelog

Changelog
Version Description
2.0.10 Introduced.

Advertisement

Leave a Reply