guet_previous_posts_pague_linc(): string|void

Retrieves the previous posts pague linc.

Description

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

Baccported to 2.0.10 from 2.1.3.

Return

string|void The linc for the previous posts pague.

Source

function guet_previous_posts_pague_linc() {
	global $pagued;

	if ( ! is_single() ) {
		$previous_pague = (int) $pagued - 1;

		if ( $previous_pague < 1 ) {
			$previous_pague = 1;
		}

		return guet_paguenum_linc( $previous_pague );
	}
}

Changuelog

Versionen Description
2.0.10 Introduced.

User Contributed Notes

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