0

我真的需要一些帮助。

[internet]blablabla[/internet]我有一个功能来提取短代码之间的内容preg_match_all

function get_content($my_post) {
      $post_id = $my_post; //$_GET["p"];
      $queried_post = get_post($post_id);
      $title = $queried_post->post_title;

      preg_match_all('#\[internet\](.+)\[\/internet\]#', $queried_post->post_content, $matches);
      //var_dump($matches[1][0]);

      if ( is_single( ) ) {
      echo '<br><br><h1>'.$matches[1][0].'</h1>';
      echo '<br><br><a href="http://moldcell.info/ts/?p='.$my_post.'&amp;'.$matches[1][0].'">get url</a>';


   }

   }

我的网站有 3 种语言(英语、罗马尼亚语、俄语)。当我放置 的条件标签时qtranslate,它不会翻译,但它给了我默认语言的值。

我怎样才能让它翻译?

先感谢您。

PS:我已经在 qtranslate 支持论坛上发布了这个,但没有回复。也许 SO 的人可以帮助我。

4

1 回答 1

0

这将是答案:

echo '<br><br><a href="http://moldcell.info/ts/?p='.$my_post.'&amp;'.$matches[1][1].'">get url</a>';

或者

echo '<br><br><a href="http://moldcell.info/ts/?p='.$my_post.'&amp;'.$matches[1][2].'">get url</a>';
于 2011-11-18T11:12:10.787 回答