WPML + Featured slider = Showing any ads, not only the featured one
Hello,
I am working to translate my Classipress ads with WPML. On this page
http://lartafabian.com/?lang=en which is the secondary language, this code...
Code:
$args = array(
'post_type' => APP_POST_TYPE,
'post_status' => 'publish',
'post__in' => get_option('sticky_posts'),
'posts_per_page' => 20,
'orderby' => 'rand',
'no_found_rows' => true,
'suppress_filters' => false,
);
... does Not return the sticky post (featured)... it show any ads. But on the main language it works perfectly (
http://lartafabian.com)
Thanks !