有些WordPress主题为某些特定的页面制作了专门的页面模板文件,比如倡萌的一个主题的使用了一个特定存档页面模板:
<?php
/*
Template Name: archives
*/
?>
然后在后台发布这个页面时,通过“页面属性”选择该模板
但是,当倡萌切换到其他主题,然后在换回原来的主题的时候,该页面所选的特定模板就变成了“默认模板”,你不得不重新选择,是不是很麻烦?
我们需要的结果应该是这样的:让每个页面记住它们在不同的主题下所选择的模板,切换到哪个主题,就使用哪个主题的模板设置(不会丢失原来的设置,也不会被替换为“默认模板”)。
要实现我们需要的结果,只需下载安装 Remember My Template 插件即可;或者将下面代码(来自该插件)添加到主题的 functions.php 文件:
/**
* When a page's `_wp_page_template` key is updated - duplicate this value with the key
* `_wp_page_template_{theme-name}`. `{theme-name}` is the theme's folder name.
*
* Hooks onto `added_post_meta`
* Hooks onto `updated_post_meta`
*
* @param int $meta_id
* @param int $post_id
* @param string $meta_key
* @param string $meta_value
*/
function rmt_update_post_template_meta( $meta_id, $post_id, $meta_key, $meta_value ){
if( '_wp_page_template' === $meta_key ){
$theme = wp_get_theme();
$name = $theme->template;
if( $name ){
update_post_meta( $post_id, '_wp_page_template_' . $name, $meta_value );
}
}
}
add_action( "updated_post_meta", "rmt_update_post_template_meta", 10, 4 );
add_action( "added_post_meta", "rmt_update_post_template_meta", 10, 4 );
/**
* When retrieving a page's `_wp_page_template` replace this with the value associated with
* `_wp_page_template_{theme-name}`, if it exists. `{theme-name}` is the theme's folder name.
*
* Hooks onto `get_post_metadata`
*
* @param mixed $value This is `null`, unless we over-ride it with our own value.
* @param int $post_id
* @param string $meta_key
* @param bool $single
* @return Ambigous <mixed, string, multitype:, boolean, unknown, string>
*/
function rmt_get_post_template_meta( $value, $post_id, $meta_key, $single ){
if( '_wp_page_template' === $meta_key ){
$theme = wp_get_theme();
$name = $theme->template;
if( $name ){
$template = get_post_meta( $post_id, '_wp_page_template_' . $name, $single );
if( $template && locate_template( $template ) ){
$value = $template;
}
}
}
return $value;
}
add_filter( 'get_post_metadata', 'rmt_get_post_template_meta', 10, 4 );
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。