How do I get the latest post in the selected language with qTranslate-x? How do I get the latest post in the selected language with qTranslate-x? wordpress wordpress

How do I get the latest post in the selected language with qTranslate-x?


So in the end I've used this approach to query on a specific language:

$mypost = array('post_type' => 'posts', 'paged' => get_query_var('paged'), 's' => '[:en]',  'posts_per_page' => 7);

It adds an extra query for the keyword: [:en] or any language you want. And than you can just loop through it:

$loop = new WP_Query($mypost);while ($loop->have_posts()) : $loop->the_post(); ?>    <article>        <?php the_content(); ?>    </article><?phpendwhile;