php – WordPress循环无法完成帖子的查询

我有一个post loop(index.php),它显示了三个帖子链接作为标题,在它们之上有一个基于帖子的slug的幻灯片.

<div class="nuotraukos">
<?php if (have_posts()) : ?>
<?php $nuotraukos = new WP_Query('category_name=nuotraukos&showposts=3');
while ($nuotraukos->have_posts()) : $nuotraukos->the_post();
$do_not_duplicate = $post->ID; ?>
<div class="post" id="post-<?php the_ID(); ?>">
    <p class="postmetadata"><?php edit_post_link(__('Edit')); ?></p>
        <div class="entry">

            <?php  

                if ( function_exists( 'meteor_slideshow' ) ) {
                $slug = basename(get_permalink());
                meteor_slideshow('' . $slug. ''); 
                }

                 the_content('<h2>' . get_the_title() . '</h2>');

            ?>

        </div>
    </div>

<?php endwhile; ?>
<?php endif; ?>

流星幻灯片本身有一个循环,我假设它在第一次查询后取消了后循环.这就是为什么它只打印出一个标题(但显示三次),你可以在http://studioglamour.co.uk中看到它.

问题是我需要在幻灯片下方显示三个不同的链接,但不知道如何解决这个问题.

最佳答案 尝试

$slug = basename(get_permalink($nuotraukos->post->ID));
...
the_content('<h2>' . get_the_title($nuotraukos->post->ID) . '</h2>');
点赞