Site logo

Archived topic

How can I customize pagination links?

3 replies · Started by Andrew on August 11, 2020

Viewing posts 1–4 of 4

I want to customize the pagination links that appear at the bottom of archive/category/tag/home pages:

1 2 Next →

Specifically, I want to use a different arrow character. What's the best way of doing this?

Thanks.

Hi there,

You can do this:

add_filter( 'generate_next_link_text', function() {
    return 'Next >';
} );

add_filter( 'generate_previous_link_text', function() {
    return '< Previous';
} );

Let us know if you need more info :)

That was easy. Thank you!

You're welcome :)

This archived topic is closed to new replies.