• Resolved rocarly25

    (@rocarly25)


    Hi. How I could change the order of appearance of posts in homepage slider. By default the order is by last date first (I believe that). Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Richie KS

    (@rkcorp)

    cannot be done with featured slider by cat but you can with featured by post id. open lib/sliders/js-gallery-slider.php and edit
    query_posts( array( 'post__in' => explode(',', $featured_post), 'post_type'=> array('post', 'page', 'product', 'portfolio'), 'posts_per_page' => 100, 'ignore_sticky_posts' => 1, 'orderby' => 'date', 'order' => 'DESC' ) );

    to

    query_posts( array( 'post__in' => explode(',', $featured_post), 'post_type'=> array('post', 'page', 'product', 'portfolio'), 'posts_per_page' => 100, 'ignore_sticky_posts' => 1, 'orderby' => 'post__in', 'order' => '' ) );

    Thread Starter rocarly25

    (@rocarly25)

    Thank you Richie!!! It’s work perfectly. Great Theme!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change posts order homepage slider’ is closed to new replies.