我想在单个帖子页面上交换下一个/上一个导航按钮,以便点击下一个帖子'右侧的按钮导航到较旧的帖子。所以颠倒了时间顺序。
通过直接编辑主题可能会更简单,但我似乎无法确定在使用子主题执行此操作时要添加到functions.php的代码?
谢谢堆
答案 0 :(得分:1)
如果您只想更改文字。编辑single.php
会很容易。但是你想交换他们的位置,所以这就是解决方案:
将此功能放入function.php
:
https://gist.github.com/jaredchu/3e3bcb866240d1d32a3b4ae55905b135#file-the_reverse_post_navigation
在single.php
中,将the_post_navigation
替换为the_reverse_post_navigation
:
https://gist.github.com/jaredchu/3e3bcb866240d1d32a3b4ae55905b135#file-single-php