• I translated the tags and they are correctly output by the function.
    the_tags('Tags: ', ', ', ');
    But I just need to display a list without links,

    $posttags = get_the_tags();
    if ($posttags) {
      foreach($posttags as $tag) {
        echo $tag->name. ',';
      }
    }

    are displayed in the original language. How can I fix this?

Viewing 1 replies (of 1 total)
  • Hello,

    You’ll have to translate them again. It’s possible the HTML is a bit different and we’re detecting them as different strings.

    Kind regards,

Viewing 1 replies (of 1 total)
  • The topic ‘Tags problem’ is closed to new replies.