我有一个带有 wordpress 作为 CMS 的单页可滚动网站。该网站使用三种语言,我在 wordpress 中使用 qtranslate 插件。
我是 wordpress 的新手,我的问题是我不确定如何将帖子链接到适当的语言页面。我的英语工作正常。
这就是我在英文版中链接内容的方式:
<?php $test = new WP_Query('category_name=welcome&showposts=1');
while ($test->have_posts()) : $test->the_post(); ?>
<?php the_content();?>
<?php endwhile;?>
任何帮助..或替代选项表示赞赏。提前致谢。