1. 程式人生 > >織夢dedecms呼叫當前文章欄目內容

織夢dedecms呼叫當前文章欄目內容

找到根目錄include\helpers\archive.helper.php在其中新增新函式

/**
 *  查詢當前文章的父級欄目內容
 */
 if ( ! function_exists('GetParentContent'))
{
 function GetParentContent($id){
  global $dsql ;
    //獲取父級欄目id查詢欄目內容
    $row1 = $dsql->GetOne("SELECT content FROM xyc_arctype where id=$id");
    return $row1['content'];
 }
}

呼叫方法:{dede:field.typeid function="GetParentContent(@me)"/}