wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



get_previous_posts_page_link › WordPress Function

Depuis2.0.10
Dépréciéen/a
get_previous_posts_page_link ( Pas de paramètres )
Retourne:
  • (string|void) The link for the previous posts page.
Défini(e) dans:
Codex:

Retrieves the previous posts page link.

Will only return string, if not on a single page or post. Backported to 2.0.10 from 2.1.3.


Source

function get_previous_posts_page_link() {
	global $paged;

	if ( ! is_single() ) {
		$previous_page = (int) $paged - 1;

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

		return get_pagenum_link( $previous_page );
	}
}