您现在的位置是:首页 > 教程 > dedecms教程dedecms教程
Dedecms获取顶级栏目id,名称及链接
林包显2023-09-13 23:39:51dedecms教程已有人查阅
导读调用代码{dede:field.typeid function="gettoptype(@me,id)"/} //id{dede:field.typeid
调用代码
{dede:field.typeid function="gettoptype(@me,id)"/}
//id
{dede:field.typeid function="gettoptype(@me,name)"/}
//名称
{dede:field.typeid function="gettoptype(@me,link)"/}
//链接
修改 include/helpers/extend.helper.php 结尾增加 :
/**
* 获取一个类目的顶级栏目
* @param string $tid 栏目ID
* @return string
*/
if ( ! function_exists('gettoptype'))
{
function gettoptype($tid,$action)
{
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");
$toptypename = $row['typename'];
$toptypeurl = $topid;
if($action=='id') return $topid;
if($action=='name') return $toptypename;
if($action=='link') return GetOneTypeUrlA($row);
}
}
本文标签:
很赞哦! ()
相关文章
随机图文
-
新安装的dede织梦5.7程序首页打开速度慢的解决方法
有部分朋友反馈全新安装的织梦dedecms 5.7程序在安装完后打开首页,发现打开首页的速度非常慢,是什么原因呢? -
织梦dedecms根目录下的data目录迁移到web以外目录的方法
我们这里举例“D:dedecmsv57”为我们系统的根目录,我们需要将目录下的data文件夹(如图1)迁移要上一级目录(非Web目录),简单的办法直接剪切或者拷贝即可。 -
dedecms按栏目名首字母数字排序输出的方法
文章分享一篇关于dedecms栏目增加按数字字母开头排序输出,做起来很简单我们大概有三个方法,一个是数据增加字段first_word,第二步增自定义函数getfristword -
实现让dedecms支持notypeid的属性方法
打开/include/taglib/arclist.lib.php文件,找这段代码(大概在130行):return lib_arclistDone($re
留言与评论 (共有 条评论) |