WP Bootstrap Slider
// Add Shortcode
function wp_bootstrapslider() {
<!-- WP Bootstrap Slider -->
<div id="carouselWPBootstrapSlider" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<?php query_posts(array(
'post_type' => 'wp-bootstrap-slider',
'posts_per_page' => 1
)); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="carousel-item active">
<?php the_content(); ?>
</div>
<?php endwhile; ?>
<?php query_posts(array(
'post_type' => 'wp-bootstrap-slider',
'offset' => 1
)); ?>
<?php while (have_posts()) : the_post(); ?>
<div class="carousel-item">
<?php the_content(); ?>
</div>
<?php endwhile; ?>
</div>
<a class="carousel-control-prev" href="#carouselWPBootstrapSlider" role="button" data-slide="prev">
<i class="fas fa-chevron-left text-dark"></i>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselWPBootstrapSlider" role="button" data-slide="next">
<i class="fas fa-chevron-right text-dark"></i>
<span class="sr-only">Next</span>
</a>
</div>
<!-- / WP Bootstrap Slider -->
}
add_shortcode( 'wp-bootstrap-slider', 'wp_bootstrapslider' );