WordPress教程

通过插件创建 WordPress 自定义页面模板

阿里云

通过插件创建 WordPress 自定义页面模板,为页面选择不同页面模板是 WordPress 的一项基本功能。如果您是插件开发人员,准备为插件使用专用的模板,在不修改主题的情况下,很难为网站添加新的页面模板。可以通过下载的代码,利用插件为网站添加新的页面模板,而无需修改主题。

将下面的代码添加到插件中:

也想出现在这里?联系我们
创客主机
  1.     add_filter( 'page_template', 'zm_page_template' );
  2.     // 加载页面模板
  3.     function zm_page_template( $page_template ) {
  4.     	if ( get_page_template_slug() == 'zm-template.php' ) {
  5.     		$page_template = dirname( __FILE__ ) . '/templates/zm-template.php';
  6.     	}
  7.     	return $page_template;
  8.     }
  9.  
  10.     // 添加到页面属性模板中
  11.     add_filter( 'theme_page_templates', 'zm_add_template_select', 10, 4 );
  12.     function zm_add_template_select( $post_templates, $wp_theme, $post, $post_type ) {
  13.     	$post_templates['zm-template'] = __( '模板名称' );
  14.     	return $post_templates;
  15.     }

模板文件:zm-template.php

模板文件路径:/templates/zm-template.php

显示在页面属性中的模板名称:$post_templates['zm-template'] = __( '模板名称' );

通过插件创建 WordPress 自定义页面模板

已有 264 人购买
查看演示升级 VIP立刻购买

收藏
(0)

发表回复

热销模板

Ashade - 作品展示摄影相册WordPress汉化主题
LensNews

本站承接 WordPress / PbootCMS / DedeCMS 等
系统建站、仿站、开发、定制等业务!