我用Bootstrap轮播写了一点php
<?php if( magic_get_attachment() ):
$attachments = magic_get_attachment(7);
//var_dump($attachments);
?>
<div id="post-gallery-<?php the_ID(); ?>" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<?php
$i = 0;
foreach($attachments as $attachment):
$active = ($i == 0 ? ' active' : '');
?>
<div class="item<?php echo $active; ?> background-image standard-featured" style="background-image: url(<?php echo wp_get_attachment_url( $attachment->ID ); ?>);"></div>
<?php $i++; endforeach; ?>
</div><!-- .carousel-inner -->
</div><!-- .carousel -->
<?php endif; ?>
当我在Chrome中查看时,我可以看到所有图像都已存储
但似乎旋转木马没有滑动。我的代码出了什么问题? THX。
答案 0 :(得分:0)
问题解决了。
bootstrap carousel无法与高于3的jQuery版本相处。