the_posts_pagination() – Displays a paginated navigation to next/previous set of posts, when applicable.

You appear to be a bot. Output may be restricted

Description

Displays a paginated navigation to next/previous set of posts, when applicable.

Usage

the_posts_pagination( $args );

Parameters

$args
( array ) optional – Optional. See get_the_posts_pagination() for available arguments. Default empty array.

Returns

void

Source

File name: wordpress/wp-includes/link-template.php
Lines:

1 to 3 of 3
function the_posts_pagination( $args = array() ) {
  echo get_the_posts_pagination( $args );
}
 

 View on GitHub View on Trac