get_next_posts_link()
和get_previous_posts_link()
用于在分页后存档的页面之间进行链接。
用于在您想要的各个帖子之间导航get_next_post_link()
和get_previous_post_link()
. 请注意单数“;过帐;。
function myslug_render_post_navigation(){
echo get_next_post_link( __( \'Previous post\' ) ) . \' | \' . get_previous_post_link( __( \'Next post\' ) );
}
add_action( \'genesis_after_entry\', \'myslug_render_post_navigation\' );
genesis();
我注意到你
get_next_posts_link()
和
get_previous_posts_link()
相对于他们的标签向后,但在我的示例中,我并没有改变这一点,以防这是故意的。