In the theme I develop, I have a template showing 5 posts using the standard loop:
<?php
$my_query = new WP_Query('showposts=5');
while ($my_query->have_posts()) : $my_query->the_post(); ?>
and so on….
There is a page (Actualites) using this template. Now I added polylang and provided another page (News) which uses the same template. There will not be an English translation for the blog entries, but still I would like the english speaking readers to be directed to the News page which will be “the same” as Actualites (in french).
I would assume that the query above produces the same outcome regardless which page is using the template, but in fact the French page works fine, but in News I see no posts. Any ideas?