我試圖在旋轉木馬中獲得最新的WordPress帖子,我收到沒有錯誤,但也沒有結果!WordPress最新帖子輪播
這裏是我使用的代碼...
<div class = "jumbotron">
<div id = "carousel-example-generic"
class = "carousel slide"
data-ride = "carousel">
<?php
$my_query = new WP_Query();
$my_query -> query('showposts = 12');
$x == 0;
$do_not_duplicate = $post -> ID;
echo ' <ol class = "carousel-indicators">\n';
while ($my_query -> have_posts()) : $my_query->the_post();
echo ' <li data-target = \"#carousel-example-generic\" data-slide-to = "' .
$x .
'"';
$x++;
if($x == 0)
{
echo ' class = \"active\"';
}
echo '>\n' .
' </li>\n';
endwhile;
echo ' </ol>\n';
?>
<!-- Carousel items -->
<div class="carousel-inner">
<?php
$x == 0;
while ($my_query -> have_posts()) : $my_query -> the_post();
?>
<div class = "<?php if ($x == 0){ echo 'active item';} else { echo 'item';}?>">
<a href = "<?php the_permalink() ?>"
title = "<?php the_title();?>">
<?php echo get_the_post_thumbnail($id,
'sliderimg');?>
</a>
<div class = "carousel-caption">
<a href = "<?php the_permalink()?>"
rel = "bookmark"
title = "Permanent Link to <?php the_title_attribute();?>">
<?php the_title(); ?>
</a>
</div>
</div>
<?php
endwhile;
?>
</div>
<!-- Carousel nav -->
<a class = "left carousel-control"
data-slide = "prev"
href = "#carousel-example-generic">
<span class = "glyphicon glyphicon-chevron-left">
</span>
</a>
<a class = "right carousel-control"
data-slide = "next"
href = "#carousel-example-generic">
<span class = "glyphicon glyphicon-chevron-right">
</span>
</a>
<?php
wp_reset_query();
?>
</div>
</div>
這裏是我的JS:
jQuery(document).ready(function($)
{
$('.carousel').carousel({
interval : 1000
}
)
}
);
請幫助我,如果你有任何想法。
對不起,但這裏是虛擬文本只是爲了這個網站讓我發佈我的問題!我的問題很簡單明瞭,我不知道我應該怎麼說才能發表我的問題!
你有沒有打電話給普通的js文件? –
@RajKumarBhardwaj是的,我做了一切工作,如果我只是使用HTML旋轉木馬,所以我猜猜問題是在PHP代碼。 –
讓我試試我的最後,你想在上面的代碼更正? –