织梦获取当前页面的顶级栏目名称及链接教程

  织梦获取当前页面的顶级栏目名称及链接方法:在织梦文件目录中打开 includeextend.func.php 在最下面添加

  * 获取顶级栏目相关信息

  *

  * @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标题

  if($field==’description’) return $row[‘description’];//栏目描述

  if($field==’content’) return $row[‘content’];//栏目内容

  }

  }

  在织梦模板中调用以下代码:

  

{dede:field.typeid function=getToptype(@me,typename)/}

  {dede:field.typeid function=getToptype(@me,typeurl)/}获取顶级栏目链接,{dede:field.typeid function=getToptype(@me,typename)/}是获取顶级栏目名称。

☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » 织梦获取当前页面的顶级栏目名称及链接教程

Pbootcms模板网 提供优质的模板集合

立即查看 了解详情