本文以添加频道页模板为例进行讲解,其他依次类推,举一反三。
1、假设我们已经新建了“CMS集中营”栏目,而此栏目的模板不能用默认的需要新建
打开 /phpcms/templates/default/content 目录,并建立以下文件:
栏目首页模板:category_cmsjzy.html
栏目列表页模板:list_cmsjzy.html
内容页模板:show_cmsjzy.html
注意:
我添加的栏目名称是以 category_ 、 list_ 、 show_ 开头的
category_ 开头的文件会在选择模板的时候被自动识别为“栏目首页模板”,而不会在别的模板选项里出现
list_ 开头的文件会在选择模板的时候被自动识别为“栏目列表页模板”,而不会在别的模板选项里出现
show_ 开头的文件会在选择模板的时候被自动识别为“内容页模板”,而不会在别的模板选项里出现
添加其余的模板依此类推,举一反三
建立完成后在选择模板的时候就可以显示出来,但是不会像默认的那样出现“文章频道页(category.html)”而是出现“category_cmsjzy.html”,出现这种情况说明我们还要继续修改。
2、打开 /phpcms/templates/default/config.php 文件
找到
'templates|default|content' =>
array (
'category.html' => '文章频道页',
'category_download.html' => '下载频道页',
'category_picture.html' => '图片频道页',
'download.html' => '下载连接页',
'footer.html' => '底部',
'header.html' => '顶部',
'header_min.html' => '迷你顶',
'header_page.html' => '单网页头部',
'index.html' => '网站首页',
'list.html' => '列表页',
'list_download.html' => '下载列表页',
'list_picture.html' => '图片列表页',
'message.html' => '消息提示页',
'page.html' => '单网页',
'rss.html' => 'RSS页',
'search.html' => '搜索',
'show.html' => '文章内容页',
'show_download.html' => '下载内容页',
'show_picture.html' => '图片内容页',
'tag.html' => 'tag',
),
在此数组里任意位置添加即可,CMS集中营站长的习惯是将内容添加到对应的名称下边:
'templates|default|content' =>
array (
'category.html' => '文章频道页',
'category_download.html' => '下载频道页',
'category_picture.html' => '图片频道页',
'category_cmsjzy.html' => 'CMS集中营文章频道页',
'download.html' => '下载连接页',
'footer.html' => '底部',
'header.html' => '顶部',
'header_min.html' => '迷你顶',
'header_page.html' => '单网页头部',
'index.html' => '网站首页',
'list.html' => '列表页',
'list_download.html' => '下载列表页',
'list_picture.html' => '图片列表页',
'list_cmsjzy.html' => 'CMS集中营列表页',
'message.html' => '消息提示页',
'page.html' => '单网页',
'rss.html' => 'RSS页',
'search.html' => '搜索',
'show.html' => '文章内容页',
'show_download.html' => '下载内容页',
'show_picture.html' => '图片内容页',
'show_cmsjzy.html' => 'CMS集中营文章内容页',
'tag.html' => 'tag',
),
如此操作后再选择模版的时候就与默认的样式一样了“CMS集中营文章频道页(category_cmsjzy.html)”
phpcms v9添加新模板的方法
类别:phpcms 作者:码皇 来源:互联网 点击:
本文以添加频道页模板为例进行讲解,其他依次类推,举一反三。 1、假设我们已经新建了“CMS集中营”栏目,而此栏目的模板不能用默认的需要新建 打开 phpcms templates default content 目录,并建立以下文件: 栏目 ,魔客吧
相关热词搜索:
phpcms v9添加新模板的方法