当我尝试使用next_posts_link() 和previous_posts_link() 在我的archive 帖子页面我有一个404 error 页
我正在使用此永久链接设置/%category%/%postname% 对于所有页面都很好地工作,如site.com/contacts 或类似的帖子site.com/category/this-is-a-post-tile.
唯一的问题是归档帖子,为了测试,我将每个归档的帖子数量设置为每页1篇,并尝试用三篇文章来更改页面。
分页器很简单,如下所示:
<?php get_header(); ?>
</header>
<section class="large-9 columns right-dashed articles">
    <?php if (have_posts ()) : while (have_posts ()) : the_post(); ?>
        <article class="left-icon article" id="post-<?php the_ID(); ?>">
            <a class="permalink" href="<?php echo get_permalink();?>"><h2 class="black"><?php the_title(); ?></h2></a>
            <div class="details"><?php echo __(\'di:\').\' \'.get_the_author();?> / <time datetime="<?php echo get_the_date(\'Y-m-d H:i:s\');?>"><?php echo get_the_date();?></time></div>
            <div class="entry"><?php the_excerpt(); ?></div>
            <br><br>
            <a class="button" href="<?php echo get_permalink();?>"><?php echo __(\'Continue to article\'); ?></a>
            <br><br><br>
            <hr>
        </article>
    <?php endwhile; endif; ?>
    <footer>
        <?php
        // PAGINATOR
        next_posts_link();
        previous_posts_link();
        ?>
    </footer>
</section>
<aside class="large-3 columns to-right">
    <?php
    // some menu here
    ?>
</aside>
<?php get_footer(); ?>
 I\'va在永久链接和页面方面总是有错误,可能我错过了一些基本概念
WordPress 关于它。
我如何才能让它工作并让WordPress分页blog 页面是否正确?