wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



next_posts › WordPress Function

Seit0.71
Veraltetn/v
next_posts ( $max_page = 0, $display = true )
Parameter: (2)
  • (int) $max_page Optional. Max pages. Default 0.
    Erforderlich: Nein
    Standard:
  • (bool) $display Optional. Whether to echo the link. Default true.
    Erforderlich: Nein
    Standard: true
Gibt zurück:
  • (string|void) The link URL for next posts page if `$display = false`.
Definiert in:
Codex:

Displays or retrieves the next posts page link.



Quellcode

function next_posts( $max_page = 0, $display = true ) {
	$link   = get_next_posts_page_link( $max_page );
	$output = $link ? esc_url( $link ) : '';

	if ( $display ) {
		echo $output;
	} else {
		return $output;
	}
}