我正在使用旋转木马来显示来自wordpress的帖子。在4个帖子之后,它应该添加一个新的行和项目以及它们之间包含的所有代码。
这是我到目前为止的代码,不知道最好的方法是不重复太多的代码。
<?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<!--<div id="recent-post-carousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#recent-post-carousel" data-slide-to="0" <div class=" <?php if( $the_query->current_post == 0 ):?>active<?php endif; ?>"></li>
<li data-target="#recent-post-carousel" data-slide-to="1"></li>
<li data-target="#recent-post-carousel" data-slide-to="2"></li>
</ol>-->
<div class="carousel-inner">
<div class="">
<div class="row">
<div class="col-sm-6">
<div class="single-post">
<div class="pull-left post-image">
<a href="#">
<?php echo the_post_thumbnail(); ?>
<i class="fa fa-angle-right"></i>
</a>
</div>
<div class="pull-right post-details">
<p class="post-date"> <?php the_date(); ?></p>
<a href="#"><h5><?php the_title(); ?></h5></a>
<span> <?php the_author(); ?> </span>
<p> <?php echo substr(get_the_excerpt(), 0,90).' [...]'; ?> </p>
</div>
</div>
</div>
</div>
</div><!--/.item-->
<?php endwhile; endif; ?>