[Plugin: Smooth Slider] posts appearing twice on home page
-
Hello, how can I have so that the featured post only features on the home page and not again in the post excerpts below the featured area? They only need to appear once on the page or else double-vision happens, and when viewing on a mobile device, the post will appear twice directly after one another. My theme was originally set so this wouldn’t happen but smooth slider seems to have cancelled this out:
<?php $count = 1; if (is_home()) { $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts(array( 'post__not_in' => $do_not_duplicate, 'paged' => $paged )); } if ( function_exists( 'get_smooth_slider' ) ) { get_smooth_slider(); } if (have_posts()) : while (have_posts()) : the_post(); ?>
Thanks!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘[Plugin: Smooth Slider] posts appearing twice on home page’ is closed to new replies.