
如何使用Poedit翻译WordPress主题
the_post_navigation ( $args = array() )
post_navigation是一个WordPress功能,它显示当前文章类别中上一篇和下一篇文章的链接。它可以为用户提供轻松的导航,以阅读系列文章的上一篇或下一篇。
在适用的情况下,显示到下一篇/上一篇文章的导航。
function the_post_navigation( $args = array() ) { echo get_the_post_navigation( $args ); }