【发布时间】:2018-12-20 05:47:25
【问题描述】:
<div class="carousel-inner">
<?php $output = '';
$class = 'carousel-item';
$query = new WP_Query( array( 'post_type' => 'testimonials' , 'posts_per_page' => -1,) );
$posts = $query->posts;
foreach($posts as $post) {
$active = ($k == 0) ? " active" : "";
$output .=
$active = ($k == 0) ? " active" : "";
$output .=
"<div class='{$class}{$active}'>
<p><?php echo the_content();?></p>
<h4><?php echo the_title();?></h4>
</div>"; } ?>
<div class="carousel-item">
<p><?php echo the_content();?></p>
<h4><?php echo the_title();?></h4>
</div>
</div>
它不显示输出我不知道我错在哪里请帮助 foreach 活动和非活动类
【问题讨论】:
-
欢迎来到 StackOverflow。您目前只是希望我们为您解决问题。 请试一试您自己,然后向我们展示您的想法 - 如果您在此过程中遇到困难,请感受一下免费回来寻求帮助。
标签: php wordpress bootstrap-4