我编写了一个查询以显示在jquery滑块(nivo)中,但它似乎显示了所有帖子,而不是一次只显示一篇
这是我的代码:
<div class="slider-wrapper theme-projects">
<div id="slider2" class="nivoSlider">
<?php $the_query = new WP_Query( \'showposts=2\' ); ?>
<?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?>
<?php the_title(); ?>
<?php endwhile;?>
</div>
</div>
有人能提供建议吗?网站地址为
http://www.gordonlundie.com/Howe/谢谢
编辑ok我找到了以前的一篇文章,其中我有一个相同的问题,但它仍然在做相同的事情:S
<div id="recentprojects1">
<?php if ( !function_exists(\'dynamic_sidebar\') || !dynamic_sidebar(\'recentprojects1-sidebar\') ) : endif; ?>
<div class="slider-wrapper theme-projects">
<div id="slider2" class="nivoSlider">
<?php $the_query = new WP_Query( \'showposts=5\' ); while ($the_query -> have_posts()) : $the_query -> the_post();?>
<h3><?php the_title(); ?></h3>
<?php the_content(); ?>
</div>
<?php endwhile;?>
</div>
关于我是如何出错的指导意见,以便我将来不会犯这个错误,这些意见得到了广泛的接受,而不是无益的评论。