[Plugin: Polylang – Translation of news on homepage]
-
Hi,
My website shows the latest articles of a specific category (category 18), which is English. However, when I switch to the other language (Dutch) all messages are shown double. Does anyone know how I can solve this so that it will be displayed only in Dutch on the Dutch version and English on the English version?
Link to website: wilmade.com
I found this topic that seemed similar to my problem but I’m not sure whether it is exactly the same, and I also don’t know what to change exactly. My code is:
<?php $cat_id = get_cat_ID('blog'); $args = array( 'cat' => 18, 'post_type' => 'post', 'posts_per_page' => 6, 'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1) ); query_posts($args); while (have_posts()) : the_post(); ?> <div class="home_box"> <div class="feat">
Thank you very much in advance ??
- The topic ‘[Plugin: Polylang – Translation of news on homepage]’ is closed to new replies.