0
我寫了一點PHP和引導傳送帶引導轉盤不工作(PHP + WordPress的+引導)
<?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。