0

我想让我的最新帖子显示所有信息(标题、作者、缩略图和内容),但只显示另一个 div 中第二个最新帖子的标题。这是我的代码。它正确呈现了 div,但第二个 div 中的“标题”仍然是最新帖子的“标题”。

                <div id="blog-pane">


        <div id="blog-post">

        <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>



            <div id="post-title">

                <?php the_title(); ?>

            </div>

            <div id="post-author">

                <?php the_author(); ?>
                &nbsp;
                <?php the_date(); ?>
                &nbsp;
                <?php the_time(); ?>

            </div>

            <div id="post-image">

                <?php the_post_thumbnail(); ?>

            </div>

            <div id="post-text">

                <?php the_content(); ?>

            </div>      

        <?php endwhile; ?>
        <?php endif; ?>
        <?php rewind_posts(); ?>


        </div>


        <div id="post-link-1">

            <?php

                query_posts( 'p' );

                while ( have_posts() ) : the_post();

                the_title();

                endwhile;


                wp_reset_query();
                ?>
        </div>

    </div>

</div>

<?php get_footer(); ?>
4

1 回答 1

0

你可以尝试引入一些跳过逻辑让它跳过第一篇文章,

<div id="post-link-1">

            <?php

                query_posts( 'p' );
                $count = 0;
                while ( have_posts() ) { 

                       if ($count++ == 0) {
                           the_post();
                           continue;
                       }

                the_post();

                the_title();

                }


                wp_reset_query();
                ?>
        </div>
于 2013-06-25T05:02:30.307 回答