VIP会员:免费下载(VIP 特惠:36元/月、129元/年)。
非VIP用户:付费后仅限单次下载,请仔细阅读 服务购买须知。
为页面选择不同页面模板是 WordPress 的一项基本功能。如果您是插件开发人员,准备为插件使用专用的模板,在不修改主题的情况下,很难为网站添加新的页面模板。可以通过下载的代码,利用插件为网站添加新的页面模板,而无需修改主题。
将下面的代码添加到插件中:
add_filter( 'page_template', 'page_template' );
// 加载页面模板
function page_template( $page_template ) {
if ( get_page_template_slug() == 'template.php' ) {
$page_template = dirname( __FILE__ ) . '/templates/template.php';
}
return $page_template;
}
// 添加到页面属性模板中
add_filter( 'theme_page_templates', 'add_template_select', 10, 4 );
function add_template_select( $post_templates, $wp_theme, $post, $post_type ) {
$post_templates['template'] = __( '模板名称' );
return $post_templates;
}
其中:
模板文件:template.php
模板文件路径:/templates/template.php
显示在页面属性中的模板名称:$post_templates[‘template’] = __( ‘模板名称’ );
© 版权声明
NOTICE
01
DISCLAIMER
本站分享的WordPress主题/插件均遵循GPLv2 许可协议(开源软件),版权归原作者所有。如果有侵犯到您的权益,请与我们联系,将第一时间处理。
02
VIP PRIVILEGE
遇到付费内容?升级终身VIP即可全站免费畅享所有资源,自助开通会员或联系客服进行人工开通。
聊天 QQ 群:461848201
THE END








暂无评论内容