默认情况下,永久链接是相对于站点的blog posts index (又名\'page-for-posts\'
, 又称作posts page). 您正在为静态页面使用自定义页面模板Section/News
. 该静态页面与站点博客帖子索引无关。这就是为什么permalinks不引用该页面。
如果希望永久链接引用静态页面Section/News
, 然后需要将该静态页面指定为posts page 在里面Dashboard -> Settings -> Reading
.
如果您想在博客帖子索引中只显示特定类别的帖子,可以通过连接到pre_get_posts
; e、 g.:
function wpse76370_filter_pre_get_posts( $query ) {
if ( ! is_admin() && is_home() && $query->is_main_query() ) {
// This is the main loop query for the blog posts index;
// Only display a specific category
$query->set( \'cat\', \'14\' );
}
}
add_action( \'pre_get_posts\', \'wpse76370_filter_pre_get_posts\' );