我想将页面模板文件移动page-{slug}.php
到主题中的子目录中,以使WordPress自动识别它们。如果子窗体中不存在上述表单的页面模板,则WordPress应该退回到默认模板加载规则。我该如何实现?
注意-1: 对于页面模板,此问题和相应的答案更为通用,并且此链接提到template-parts/page
,这不是一回事。
注意2:我有多个page-{slug}.php
类似的页面模板文件,因此我想将它们移到子目录中以使文件组织更整洁。
我想将页面模板文件移动page-{slug}.php
到主题中的子目录中,以使WordPress自动识别它们。如果子窗体中不存在上述表单的页面模板,则WordPress应该退回到默认模板加载规则。我该如何实现?
注意-1: 对于页面模板,此问题和相应的答案更为通用,并且此链接提到template-parts/page
,这不是一回事。
注意2:我有多个page-{slug}.php
类似的页面模板文件,因此我想将它们移到子目录中以使文件组织更整洁。
Answers:
根据默认的WordPress模板层次结构,page
请求将根据优先级和命名加载模板,如下所述:
Custom Page Template
:如果在页面编辑器中定义。page-{slug}.php
page-{url-encoded-slug}.php
:仅用于多字节字符。page-{id}.php
page.php
singular.php
index.php
其中,singular.php
和index.php
是不是真正的页面模板。singular.php
是任何单个帖子类型index.php
的后备模板,并且是WordPress模板应该加载的任何内容的最终后备模板。因此,前五个是页面模板。
WordPress核心功能会get_page_template()
生成必要的page
模板层次结构数组,并且在确定要从层次结构中确切加载哪个模板文件之前,WordPress会触发page_template_hierarchy
过滤器挂钩。因此,添加子目录的最佳方法是WordPress page-{slug}.php
自动在其中查找模板,该方法是使用此过滤器并相对于页面模板层次结构数组中的子目录注入适当的文件名。
注意:原始过滤器挂钩是一个动态过滤器挂钩,定义为
{$type}_template_hierarchy
,位于wp-includes/template.php
文件中。因此,当为$type
is时page
,过滤器挂钩变为page_template_hierarchy
。
现在,出于我们的目的,我们将在传递给hooks回调函数的模板层次结构数组中注入sub-directory/page-{slug}.php
文件名page-{slug}.php
。这样,WordPress将加载sub-directory/page-{slug}.php
文件(如果存在),否则它将遵循常规页面模板加载层次结构。当然,为了保持一致性,Custom Page Template
与sub-directory/page-{slug}.php
文件相比,我们仍将赋予更高的优先级。因此,修改后的页面模板层次结构将变为:
Custom Page Template
:如果在页面编辑器中定义。sub-directory/page-{slug}.php
sub-directory/page-{url-encoded-slug}.php
:仅用于多字节字符。page-{slug}.php
page-{url-encoded-slug}.php
:仅用于多字节字符。page-{id}.php
page.php
functions.php
代码:如果计划仅对单个主题进行此更改,则可以在活动主题的functions.php
文件中使用以下代码:
// defining the sub-directory so that it can be easily accessed from elsewhere as well.
define( 'WPSE_PAGE_TEMPLATE_SUB_DIR', 'page-templates' );
function wpse312159_page_template_add_subdir( $templates = array() ) {
// Generally this doesn't happen, unless another plugin / theme does modifications
// of their own. In that case, it's better not to mess with it again with our code.
if( empty( $templates ) || ! is_array( $templates ) || count( $templates ) < 3 )
return $templates;
$page_tpl_idx = 0;
if( $templates[0] === get_page_template_slug() ) {
// if there is custom template, then our page-{slug}.php template is at the next index
$page_tpl_idx = 1;
}
$page_tpls = array( WPSE_PAGE_TEMPLATE_SUB_DIR . '/' . $templates[$page_tpl_idx] );
// As of WordPress 4.7, the URL decoded page-{$slug}.php template file is included in the
// page template hierarchy just before the URL encoded page-{$slug}.php template file.
// Also, WordPress always keeps the page id different from page slug. So page-{slug}.php will
// always be different from page-{id}.php, even if you try to input the {id} as {slug}.
// So this check will work for WordPress versions prior to 4.7 as well.
if( $templates[$page_tpl_idx] === urldecode( $templates[$page_tpl_idx + 1] ) ) {
$page_tpls[] = WPSE_PAGE_TEMPLATE_SUB_DIR . '/' . $templates[$page_tpl_idx + 1];
}
array_splice( $templates, $page_tpl_idx, 0, $page_tpls );
return $templates;
}
add_filter( 'page_template_hierarchy', 'wpse312159_page_template_add_subdir' );
如果要在多个主题中遵循相同的模板文件组织,则最好将此功能与主题分开。在这种情况下,functions.php
您无需使用上述示例代码修改主题文件,而是需要使用相同的示例代码创建一个简单的插件。
使用文件名(例如page-slug-template-subdir.php
在WordPress plugins
目录中)保存以下CODE :
<?php
/*
Plugin Name: WPSE Page Template page-slug.php to Sub Directory
Plugin URI: https://wordpress.stackexchange.com/a/312159/110572
Description: Page Template with page-{slug}.php to a Sub Directory
Version: 1.0.0
Author: Fayaz Ahmed
Author URI: https://www.fayazmiraz.com/
*/
// defining the sub-directory so that it can be easily accessed from elsewhere as well.
define( 'WPSE_PAGE_TEMPLATE_SUB_DIR', 'page-templates' );
function wpse312159_page_template_add_subdir( $templates = array() ) {
// Generally this doesn't happen, unless another plugin / theme does modifications
// of their own. In that case, it's better not to mess with it again with our code.
if( empty( $templates ) || ! is_array( $templates ) || count( $templates ) < 3 )
return $templates;
$page_tpl_idx = 0;
if( $templates[0] === get_page_template_slug() ) {
// if there is custom template, then our page-{slug}.php template is at the next index
$page_tpl_idx = 1;
}
$page_tpls = array( WPSE_PAGE_TEMPLATE_SUB_DIR . '/' . $templates[$page_tpl_idx] );
uded in the
// page template hierarchy just before the URL encoded page-{$slug}.php template file.
// Also, WordPress always keeps the page id different from page slug. So page-{slug}.php will
// always be different from page-{id}.php, even if you try to input the {id} as {slug}.
// So this check will work for WordPress versions prior to 4.7 as well.
if( $templates[$page_tpl_idx] === urldecode( $templates[$page_tpl_idx + 1] ) ) {
$page_tpls[] = WPSE_PAGE_TEMPLATE_SUB_DIR . '/' . $templates[$page_tpl_idx + 1];
}
array_splice( $templates, $page_tpl_idx, 0, $page_tpls );
return $templates;
}
// the original filter hook is {$type}_template_hierarchy,
// wihch is located in wp-includes/template.php file
add_filter( 'page_template_hierarchy', 'wpse312159_page_template_add_subdir' );
使用以上任一代码,WordPress都会自动识别主题目录中的
page-{slug}.php
模板文件page-templates
。举例来说,您有一个
about
页面。因此,如果没有custom page template
来自编辑器的设置,则WordPress将寻找THEME/page-templates/page-about.php
模板文件,如果不存在,则WordPress将寻找THEME/page-about.php
模板文件,依此类推(即默认页面模板层次结构)。