DEDECMS留言板模块引用顶级栏目导航

第一步:打开”/include/extend.func.php”
然后在该文件中加入一个函数,代码如下:

1
2
3
4
5
6
7
8
function pasterTempletDiy($path) {
    require_once(DEDEINC."/arc.partview.class.php");
    global $cfg_basedir,$cfg_templets_dir;
    $tmpfile = $cfg_basedir.$cfg_templets_dir."/".$path;//模版文件的路径
    $dtp = new PartView();
    $dtp->SetTemplet($tmpfile);
    $dtp->Display();
}

第二步,打开留言本的模版文件,默认的是/templets/plus/guestbook.htm
在该文件的”“下面,加入如下代码:

1
2
3
<?php
    pasterTempletDiy("default/head.htm");
?>