将帖子导航设置为同一类别 – 添加以下代码
add_action( 'after_setup_theme', 'tu_category_specific_post_navigation' );
function tu_category_specific_post_navigation() {
add_filter( 'generate_category_post_navigation', '__return_true' );
}
过滤器强制单个帖子的帖子导航保留在其类别内,而不是指向其他类别中的帖子。generate_category_post_navigation
默认值(布尔值): false