Integrating Bootstrap carousel in WordPress without plugin

前端 未结 6 1613
感动是毒
感动是毒 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:33

    This is the solution I came up with:

     'slides',
     'oderby'         => 'menu_order',
     'posts_per_page' => -1
     );
    
    $slides = new WP_Query( $args );
    
    if( $slides->have_posts() ): ?>
    

    I learnt this by watching the following video: Integrating the Bootstrap Carousel into the WordPress theme by user Ezer Sanbe. All credits to him.

    The youtube video or the channel for this user are no longer available, sorry

    Hope this helps

提交回复
热议问题