在phpcms中设置专题里面,默认专题的分类没有独立模板设置的,以下简单介绍了给子分类设置独立模板样式办法。
首先打开phpcms文件夹、modules文件夹、special文件夹、index.php文件
找到如下代码:
$list_template ? $list_template : 'list';
将其替换为:
$template = $info['template'] ? $info['template'] : ($list_template ? $list_template : 'list');
继续打开当前文件夹中的special.php文件
找到
`typedir`
将代码替换为:
`typedir`, `template`
在special文件夹中找到templates文件夹然后打开special_add.tpl.php文件
在代码 前面加上如下代码:
找到
var n = $('#option_list').find('input[name]').length/3+1;
在代码后面加上
var template = '<?php echo str_replace("'", "\'", form::select_template('default', 'special', 'list', 'name="type[|id|][template]"', 'list'));?>';
改为
'+template.replace('|id|', n)+'
找到 var n = $('#option_list').find('input[type="text"]').length/3+1;
后面添加如下代码:
var template = '<?php echo str_replace("'", "\'", form::select_template('default', 'special', 'list', 'name="type[|id|][template]"', 'list'));?>';
将