只在栏目页和内容页使用,首页使用无效,因为首页获取不到当前栏目的ID,所以无法进行下一步的判断。
<?php
$cr=explode("|",$class_r[$GLOBALS[navclassid]]['featherclass']);
$topbclassid=$cr[1];
?>
顶级栏目ID:<?=$topbclassid?>
<br>顶级栏目名:<?=$class_r[$topbclassid][classname]?>
<br>顶级栏目地址:/<?=$class_r[$topbclassid][classpath]?>
或者用下面的方法!
把下面代码复制到eclassuserfun.php中的<?php和?>间 (封面、列表、内容)
function user_GetTopBclassname($classid){
global $class_r;
$fr=explode('|',$class_r[$classid][featherclass]);
$topbclassid=$fr[1]?$fr[1]:$classid;//取得第一级栏目id
$topbclassname=$class_r[$topbclassid][classname];//第一级栏目名称
$cr[classid]=$topbclassid;
$topbclassurl=sys_ReturnBqClassname($cr,9); //第一级栏目链接
return "<a rel="nofollow noopener noreferrer" href=".$topbclassurl.">".$topbclassname."</a> ";
}
调用方法:<?=user_GetTopBclassname($GLOBALS[navclassid])?> 这个直接调用了一级栏目名称和链接
本文帝国CMS获取当前页面顶级栏目名称和连接,包含列表和内容页面如何使用到此结束。不相信奇迹的人永远都不会创造奇迹。小编再次感谢大家对我们的支持!