Hi there,
Is there any news on the modified query vars front?
Polylang currently prevents my custom post types from showing up on my ‘Latest’ page using the following custom query:
$args=array(
'post_type' => array( 'magazine', 'presse', 'post' ),
'post_status' => 'publish',
'posts_per_page' => 8,
'orderby' => 'post_date',
'order' => 'DESC'
);
$query = new WP_Query($args);
Disabling Polylang gets the posts to appear correctly. Is there any way to get this to work?
Thanks in advance…
Simon