[Support request] Post pagination

Home Forums Support [Support request] Post pagination

Home Forums Support Post pagination

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1275676
    Moazam

    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

    #1276038
    Tom
    Lead Developer
    Lead Developer

    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.

    #1276049
    Moazam

    Hi, yes in single posts but I don’t see it.

    #1276525
    David
    Staff
    Customer Support

    Hi there,

    can you share a link to a paginated post so we can take a look?

    #1276871
    Moazam

    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

    #1277316
    Tom
    Lead Developer
    Lead Developer

    Give this a shot:

    add_filter( 'wp_link_pages_args', function( $args ) {
        $args['next_or_number'] = 'next';
    
        return $args;
    } );

    Let me know 🙂

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.