有一个名为theme_page_templates
在某些情况下,可以使用它强制使用特定模板。像这样:
add_filter (\'theme_page_templates\', \'wpse263827_filter_theme_page_templates\', 20, 3 );
wpse263827_filter_theme_page_templates ($page_templates, $this, $post) {
if (condition based on $post) $page_templates = \'path-to-template.php\';
return $page_templates;
}
因此,您可以将模板文件放置在任何需要的地方,并在页面处于特定类别时进行分配。无需触摸url结构。