Archived topic
How to delete the text previous/next in navigation categories
7 replies · Started by ROHART on March 20, 2023
Hi,
On my categories, I customize the navigation as on this image https://www.i-trekkings.net/wp-content/uploads/2023/03/Capture-décran-2023-03-20-à-10.43.02.jpg. But I would like to delete the text Préc (previous) and Suiv (next). How I can do that ?
All the Bbest
Gregory
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