wordpress language filter qtranslate

570 Views Asked by At

I have a single page scrollable website with wordpress as CMS. The website is in three languages and I'm using the qtranslate plugin in wordpress.

I'm new to wordpress and my issue is i'm not sure how to link the posts to appropriate language pages. I have the english on working fine.

This is how I link the content in my english version:

<?php $test = new WP_Query('category_name=welcome&showposts=1');
while ($test->have_posts()) : $test->the_post(); ?>                                 
<?php the_content();?>
<?php endwhile;?>   

Any help.. or alternate options is appreciated. thanks in advance.

0

There are 0 best solutions below