admin管理员组

文章数量:1336075

I have a mutual DB of custom posts that I'd like different languages to be able to access. If I loop through the post type only, all posts show in all languages, but once I add a tag to the query it only shows on default language page.

The below is displayed with no problems across all pages

$the_query = new WP_Query( array('post_type' => 'cars' , 'posts_per_page' => 6) );

And this query with tag only shows in default language:

$the_query = new WP_Query( array('post_type' => 'cars' , 'tag' => 'recommended', 'posts_per_page' => 6) );

Does anyone know what the problem might be?

本文标签: custom post typesPolylang nondefault language ignores tags in WPQuery