Archived topic
How to translate an edit posts with WP Show Posts
1 reply · Started by Kasper on January 23, 2023
Viewing posts 1–2 of 2
I have some trouble with som translation (Next link) and also the Category link (Artikler)
https://www.supermacservice.dk/screenshot-frontpage.png
Is there anyway to correct this?
Located on the lower part of the frontpage
https://www.supermacservice.dk/
Thank you
Kasper
Hi there,
try the PHP Snippet that Tom provides here for the Navigation:
For the category you can try:
add_filter( 'gettext', function( $translated_text, $text, $domain ) {
if ( 'Artikler' === $translated_text ) {
$translated_text = 'Your custom text';
}
return $translated_text;
}, 20, 3 );
This archived topic is closed to new replies.