Archived topic
Post pagination
5 replies · Started by Moazam on May 8, 2020
Hi
How can I add post pagination. In bimber I have something like this: https://www.screencast.com/t/nC0OJuj28 Is it possible to style it as well?
Thanks
Hi there,
Is this for pagination inside single posts/pages?
It should be there by default, but it would need to be styled with CSS.
Hi, yes in single posts but I don't see it.
Hi there,
can you share a link to a paginated post so we can take a look?
Hi, just noticed it was display below related posts. https://www.screencast.com/t/n5X6eaDs How can I just show next and previous not numbers
Give this a shot:
add_filter( 'wp_link_pages_args', function( $args ) {
$args['next_or_number'] = 'next';
return $args;
} );
Let me know :)