Integrating Bootstrap carousel in WordPress without plugin

前端 未结 6 1590
感动是毒
感动是毒 2021-01-12 19:05

I have integarted bootstrap carousel into my wordpress. The slides will be taken from the posts which will be tagged as \"featured\" so only 5 recently enter \"featured\" po

6条回答
  •  囚心锁ツ
    2021-01-12 19:53

    To avoid having to query twice, you can set a variable set to 1 outside your loop. In the loop, you add the "active" class when it's equal to 1, then you increment it.

    have_posts() ) :
        $the_query->the_post();
             ?>
            

提交回复
热议问题