the_posts_navigation()
Displays the navigation to next/previous set of posts, when applicable.
No Hooks.
Return
null
. Nothing.
Usage
the_posts_navigation( $args );
- $args(array)
- See get_the_posts_navigation() for available arguments.
Default: empty array
Changelog
Since 4.1.0 | Introduced. |
Code of the_posts_navigation() the posts navigation WP 5.9.3
function the_posts_navigation( $args = array() ) { echo get_the_posts_navigation( $args ); }