我有与This other stack post完全相同的问题。我怎么无法弄清楚回复者的意思。我已经在我的自定义循环中尝试了他们的示例,它看起来与 OP 相同,但是分页不起作用。它没有出现。
我在这个循环中也有这个问题:
$attr = array(
'align' => 'left',
'class' => 'thumbnail imageRight',
'width' => 350,
'height' => 350
);
if(have_posts()){
while(have_posts()){
the_post();
?>
<div class="post">
<?php the_post_thumbnail('medium', $attr); ?>
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<p><?php the_excerpt(); ?></p>
</div>
<?php
}
next_posts_link('« Older Entries');
previous_posts_link('Newer Entries »');
}
分页根本不会出现,如果我在上方和下方回显某些内容,我会看到回显的文本 obv,但我看不到分页链接....
我已将 WP 设置为每页显示 3 个帖子,并且我在数据库中有超过 45 个帖子。