显示多个标题的WordPress查询

时间:2013-09-17 作者:Kirsty Marks

我编写了一个查询以显示在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>
关于我是如何出错的指导意见,以便我将来不会犯这个错误,这些意见得到了广泛的接受,而不是无益的评论。

1 个回复
SO网友:Manish

看起来你在两篇帖子中的图片都是一样的。

结束

相关推荐

JQuery multiple toggle values

我正试图隐藏/显示依赖于所选页面模板的元数据库。直到我在多个选择的页面模板上显示元盒之前,这一直都很好。下面的代码显示默认页面的富内容编辑器,但不显示页面子级。php页面。我猜我的代码写错了:(function($){ $(function() { $(\'#page_template\').change(function() { $(\'#postdivrich\').toggle($(this).val() == \'page-c