0

我为 Wordpress 编写了一小段代码,它将在滑块中显示最近的前 4 个帖子(Filament Group Responsive Carousel)。它可以工作,显示帖子并滑动它们等,但有 4 个滑块,每个滑块中有 4 个帖子。我一定是WP_Query()错误地定位了一些代码。这是我的代码:

<div class="carousel slider carousel-slide" data-transition="slide" data-autoplay="" data-interval="5000" data-paginate="true">
    <?php
        $topNews = new WP_Query();
        $topNews->query('showposts=4'); 
        while ($topNews->have_posts()) : $topNews->the_post(); ?>
            <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
                <header class="entry-header">
                    <?php if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
                        the_post_thumbnail('full');
                } ?>
                    <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'android_and_tea' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
                </header>
            </div>
        <?php endwhile; ?>
</div>

所以我的问题是,我需要重新定位/更改/添加/删除什么代码才能让它显示一个带有 4 个最新帖子的滑块,而不是 4 个带有 4 个最新帖子的滑块?

4

1 回答 1

0

我的猜测是您将代码调用到循环中,例如:

if(have_posts()) while(have_posts()): the_post();

//HERE IS YOUR CODE

endwhile;

您必须在此循环之前或之后移动您的代码或删除循环前:

//if(have_posts()) while(have_posts()): the_post();

//HERE IS YOUR CODE

//endwhile;

或者

//HERE IS YOUR CODE
if(have_posts()) while(have_posts()): the_post();

endwhile;
于 2013-02-15T20:55:56.910 回答