PHPWind门户模式中不同栏目定义不同头部的方法

PHPWind门户模式中不同栏目定义不同头部的方法 先看pw common.php的代码 function getAreaSrcTpl($template,$EXT=’htm’){ global $db_tplstyle,$area_indextpl; if ($template==’header’ || $template==’footer’) { $srcTpl = M_P.themes/$area_indextpl/$

PHPWind门户模式中不同栏目定义不同头部的方法

先看pw common.php的代码

function getAreaSrcTpl($template,$EXT=’htm’){
global $db_tplstyle,$area_indextpl;
if ($template==’header’ || $template==’footer’) {
$srcTpl = M_P."themes/$area_indextpl/$template.$EXT";
} else {
$srcTpl = M_P."themes/$db_tplstyle/$template.$EXT";
}
if (!file_exists($srcTpl)) { //liehuo.net
global $area_indextpl;
if ($area_indextpl!=’default’ && file_exists(M_P."themes/$area_indextpl/$template.$EXT")) {
$srcTpl = M_P."themes/$area_indextpl/$template.$EXT";
} else {
$srcTpl = M_P."themes/default/$template.$EXT";
}
}
return $srcTpl;
}

由于使用了

知道你要采集,www.liehuo。net

if ($template==’header’ || $template==’footer’) {
$srcTpl = M_P."themes/$area_indextpl/$template.$EXT";
} else {

所以统一了头部和底部,但是很多情况希望每个频道头部不一样,更改方法为:

将cate.php中

require_once(M_P.’require/header.php’);

改成

require_once(M_P.’require/header_cate.php’);

然后复制一个header.php改名为header_cate.php;

更改require_once PrintEot(‘header’);

为require_once PrintEot(‘header_cate’);

然后在每个风格目录中加上header_cate.htm,这样就可以为每个频道制定不同头部了。在风格模板中

关于作者: dawei

【声明】:石家庄站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。

为您推荐