織夢獲取當(dāng)前頁面的頂級欄目名稱及鏈接方法:在織夢文件目錄中打開 \include\extend.func.php 在最下面添加
* 獲取頂級欄目相關(guān)信息 * * @access public * @param string $tid 欄目id * @param string $field欄目字段 * @return string */ if ( ! function_exists('getToptype')) { function getToptype($tid,$field) { global $dsql,$cfg_Cs; if(!is_array($cfg_Cs)) { require_once(DEDEDATA."/cache/inc_catalog_base.inc"); } if(!isset($cfg_Cs[$tid][0]) || $cfg_Cs[$tid][0]==0) { $topid = $tid; } else { $topid = GetTopid($cfg_Cs[$tid][0]); } $row = $dsql->GetOne("SELECT * FROM `dede_arctype` WHERE id=$topid"); if($field=='id') return $topid; if($field=='typename') return $row['typename'];//欄目名稱 if($field=='typeurl') return GetOneTypeUrlA($row);//欄目鏈接 if($field=='typenamedir') return $row['typenamedir'];//欄目英文名稱 if($field=='seotitle') return $row['seotitle'];//欄目SEO標(biāo)題 if($field=='description') return $row['description'];//欄目描述 if($field=='content') return $row['content'];//欄目內(nèi)容 } } |
* |
在中調(diào)用以下代碼:
<h3><a href="{dede:field.typeid function=getToptype(@me,typeurl)/}">{dede:field.typeid function=getToptype(@me,typename)/}</a></h3>
{dede:field.typeid function=getToptype(@me,typeurl)/}獲取頂級欄目鏈接,{dede:field.typeid function=getToptype(@me,typename)/}是獲取頂級欄目名稱。
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: 織夢獲取當(dāng)前頁面的頂級欄目名稱及鏈接教程