Site logo

Archived topic

Next and previous icon instead of Next and Previous links text

3 replies · Started by Immi on March 24, 2021

Viewing posts 1–4 of 4

I would like to show the next and previous icon instead of Next and Previous links in the pagination. I have also attached a screenshot that same I would like to display.
https://www.screencast.com/t/AXawWjt5LjI

How can I achieve this?

Thanks

Hi there,

you can use this PHP Snippet;

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

Thank you for the quick help, David. 🙂

You're welcome

This archived topic is closed to new replies.