Site logo

Archived topic

Post pagination

5 replies · Started by Moazam on May 8, 2020

Viewing posts 1–6 of 6

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?

Give this a shot:

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

    return $args;
} );

Let me know :)

This archived topic is closed to new replies.