通过插件创建 WordPress 自定义页面模板,为页面选择不同页面模板是 WordPress 的一项基本功能。如果您是插件开发人员,准备为插件使用专用的模板,在不修改主题的情况下,很难为网站添加新的页面模板。可以通过下载的代码,利用插件为网站添加新的页面模板,而无需修改主题。
将下面的代码添加到插件中:
- add_filter( 'page_template', 'zm_page_template' );
- // 加载页面模板
- function zm_page_template( $page_template ) {
- if ( get_page_template_slug() == 'zm-template.php' ) {
- $page_template = dirname( __FILE__ ) . '/templates/zm-template.php';
- }
- return $page_template;
- }
- // 添加到页面属性模板中
- add_filter( 'theme_page_templates', 'zm_add_template_select', 10, 4 );
- function zm_add_template_select( $post_templates, $wp_theme, $post, $post_type ) {
- $post_templates['zm-template'] = __( '模板名称' );
- return $post_templates;
- }
模板文件:zm-template.php
模板文件路径:/templates/zm-template.php
显示在页面属性中的模板名称:$post_templates['zm-template'] = __( '模板名称' );
文章連結:https://www.wuyanshuo.cn/903.html
更新時間:2022年6月15日
1、本站所有資源均不添加推廣檔案或浮水印,壓縮包內若有廣告檔案和浮水印請勿輕易相信。
2、本站資源均為兩層壓縮,第一層7z(尾碼若為wys,請自行修改為7z)有解壓密碼; 第二層zip或cbz,無解壓密碼,可直接使用漫畫類軟件程式查看; 詳情可參攷解壓教程。
3、本站大部分內容均收集於網絡! 若內容侵犯到您的權益,請發送郵件至:admin#wysacg.top我們將第一時間處理! 資源所需價格並非資源售賣價格,是收集、整理、編輯詳情以及本站運營的適當補貼,並且本站不提供任何免費技術支援。 所有資源僅限於參攷和學習,版權歸原作者所有!