是否将后导航限制在同一类别(_P)?

时间:2017-02-12 作者:kidcoder SAVE UKRAINE

如何将帖子导航限制为仅限当前类别内的帖子?

<!-- the post navigation -->
<?php
    the_post_navigation( array(
        \'screen_reader_text\'    => __( \'MORE EVENTS\' ),
        \'prev_text\'             => __( \'Previous: \' ) . \'%title\',
        \'next_text\'             => __( \'Next: \' ) . \'%title\'
    ) );
?>

1 个回复
SO网友:SAUMYA

自定义帖子导航,以获取相同标签中的帖子。

the_post_navigation( array(
            \'prev_text\'                  => __( \'prev chapter: %title\' ),
            \'next_text\'                  => __( \'next chapter: %title\' ),
            \'in_same_term\'               => true,
            \'taxonomy\'                   => __( \'post_tag\' ),
            \'screen_reader_text\' => __( \'Continue Reading\' ),
        ) );

Source

相关推荐

是否可以取消对特定帖子类型的POSTS_PER_PAGE限制?

我想知道我是否可以取消特定帖子类型的posts\\u per\\u页面限制。在存档中。php页面我显示不同的帖子类型,对于特定的“出版物”帖子类型,我想显示所有帖子。我如何在不影响传统“post”类型的情况下实现这一点?