在織夢的會(huì)員模板里,你想要統(tǒng)一跟首頁頭尾對(duì)應(yīng),想要引入其他有標(biāo)簽的模板的話 {dede:include filename="head.htm"/} 是不能用的,我們可以寫個(gè)自定義方法來實(shí)現(xiàn)
打開 /include/extend.func.php 在文件的最下面加入一個(gè)方法
/**
* 引入有標(biāo)簽?zāi)0逭{(diào)用方法
*
* @access public
* @param string $filename 模板或路徑
* @return string
*/
if(!function_exists('pasterTempletDiy'))
{
function pasterTempletDiy($filename)
{
global $cfg_df_style;
if($filename=='')
{
return '';
}
if( file_exists($filename) )
{
$tmpfile = $filename;
}
else if(file_exists(DEDEROOT.'/templets/'.$cfg_df_style.'/'.$filename) )
{
$tmpfile = DEDEROOT.'/templets/'.$cfg_df_style.'/'.$filename;
}
else
{
echo "無法在這個(gè)位置找到: $filename";
}
require_once(DEDEINC."/arc.partview.class.php");
$dtp = new PartView();
$dtp->SetTemplet($tmpfile);
$dtp->Display();
}
}
<?php
pasterTempletDiy("head.htm");
?>
<?php
pasterTempletDiy(DEDEMEMBER."/templets/diy.htm");
?>
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: 織夢會(huì)員模板或動(dòng)態(tài)頁面里引入其他有標(biāo)簽?zāi)0宓膶懛?