Site logo

Archived topic

How to delete the text previous/next in navigation categories

7 replies · Started by ROHART on March 20, 2023

Viewing posts 1–8 of 8

Hi there,

can you share a link to the site where i can see this? I just need to see how its being output.

Hi David,

The site is a staking site under development. It is not accessible. Would you like temporary admin access to watch?

Yes, if you can provide a temporary login in the Private Information field :)

Done :-)

Ah ok.

Add This PHP Snippet:


add_filter( 'generate_previous_link_text', function() {
    return '←';
} );
add_filter( 'generate_next_link_text', function() {
    return '→';
} );

Thanks very much David.

You're welcome

This archived topic is closed to new replies.