Skip to content Skip to sidebar

This is the technical support forum for WPML - the multilingual WordPress plugin.

Everyone can read, but only WPML clients can post here. WPML team is replying on the forum 6 days per week, 22 hours per day.

This topic contains 1 voice and has 0 replies.

>

Assisted by: Osama Mersal.

Author Posts
October 10, 2023 at 10:48 am #14548887

darrenB-10

Referring to this post:
https://wpml.org/forums/topic/archive-on-wordpress-showing-posts-from-all-langugages/

We have updated the blogs section to "only show translated items" but still seeing duplciates for every blog on outofoffice.com/blog

Darren

Screenshot 2023-10-10 114743.jpg
October 10, 2023 at 11:25 am #14549161

darrenB-10

I fixed this myself with the help of Chat GPT - and changed the code from Get Posts to WP Query:

$postsPerPage,
'offset' => $postOffset,
'post_type' => 'blog',
'lang' => $current_language, // Set the language parameter
);

$query = new WP_Query($args);

if ($query->have_posts()) :
?>