[Resolved] How can I customize pagination links?

Home Forums Support [Resolved] How can I customize pagination links?

Home Forums Support How can I customize pagination links?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1397405
    Andrew

    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.

    #1397924
    Tom
    Lead Developer
    Lead Developer

    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 πŸ™‚

    #1398618
    Andrew

    That was easy. Thank you!

    #1399202
    Tom
    Lead Developer
    Lead Developer

    You’re welcome πŸ™‚

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