我的Wordpress主題有問題。我的next_posts_link()
只能重新加載相同的頁面。這是我的代碼。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');
這是我想保留的內容。那麼有人知道它爲什麼只是重新加載?爲什麼它不改變到下一頁?
那麼,這是一個無賴。你知道是否有解決方法或?文章只是總結了我已經完成的工作。 –
@HåvardBrynjulfsen:你可以嘗試這樣的:'<?php global $ paged; query_posts('paged ='。$ paged); '但是我不確定它會起作用。 –
我應該在代碼中放置這個? –