the_posts_pagination() WP 1.0
Displays a paginated navigation to next/previous set of posts, when applicable.
Works based on: get_the_posts_pagination()
No Hooks.
Return
Null. Nothing.
Usage
the_posts_pagination( $args );
- $args(array)
- See get_the_posts_pagination() for available arguments.
Default: empty array
Changelog
Since 4.1.0 | Introduced. |
Code of the_posts_pagination() the posts pagination WP 5.6
function the_posts_pagination( $args = array() ) {
echo get_the_posts_pagination( $args );
}