我的 Wordpress 主题有问题。我next_posts_link()
只重新加载同一页面。这是我的代码。
<div id="main">
<?php query_posts('category_name='.get_the_title().'&post_status=publish,future');?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="utdrag">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<div class="crop"><a href="<?php the_permalink(); ?>">
<?php
if ( get_the_post_thumbnail($post_id) != '' ) {
echo '<a href="'; the_permalink(); echo '" class="thumbnail-wrapper">';
the_post_thumbnail();
echo '</a>';
} else {
echo '<img src="';
echo catch_that_image();
echo '" alt="Image unavailable" class="crop" />';
echo '</a>';
}
?></a>
</div>
<?php the_excerpt(); ?>
</div>
<?php endwhile; else: endif; ?>
<?php next_posts_link();?><?php previous_posts_link();?>
</div>
我使用静态页面作为我的首页。如您所见,它仅显示与页面标题具有相同类别的帖子:query_posts('category_name='.get_the_title().'&post_status=publish,future');
这是我想保留的东西。那么有谁知道为什么它只是重新加载?为什么它没有改变到下一页?