• Hi.

    I have this

    add_filter( 'wpsp_pagination_mid_size', '1' );
    

    But even I changed 1 to 3, 7, 9… the pagination is always showing like:
    ← Previous 1 2 … 18 Next →

    Is there anyway to get more numbers in between? Like: Previous 1 2 3 4 … 18 Next?

    Thanks.

Viewing 1 replies (of 1 total)
  • Plugin Support Elvin

    (@ejcabquina)

    Hi there,

    your filter is returning a string.

    Try this:

    add_filter( 'wpsp_pagination_mid_size', function( $size ){
    $size = 3;
    return $size;
    },10,1 );
Viewing 1 replies (of 1 total)
  • The topic ‘wpsp_pagination_mid_size’ is closed to new replies.