正在加载周涛博客
自留地
切勿乱来!
        找回密码

PHPCMS V9内容页调用无链接栏目名称

在一次偶然的机会遇到客户需要在内容页面调用当前内容所在的栏目名称,但是不想要链接(要链接就没下面这么多事了),所以只好做如下修改:
phpcms\libs\functions\global.func.php
里面增加


function lanmu($catid, $symbol=' > '){
$category_arr = array();
$siteids = getcache('category_content','commons');
$siteid = $siteids[$catid];
$category_arr = getcache('category_content_'.$siteid,'commons');
if(!isset($category_arr[$catid])) return '';
$pos = '';
$siteurl = siteurl($category_arr[$catid]['siteid']);
$arrparentid = array_filter(explode(',', $category_arr[$catid]['arrparentid'].','.$catid));
foreach($arrparentid as $catid) {
$url = $category_arr[$catid]['url'];
if(strpos($url, '://') === false) $url = $siteurl.$url;
$pos .= ''.$category_arr[$catid]['catname'].'';
}
return $pos;
}

调用方式:
{lanmu($catid)}

赞(0) 打赏
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《PHPCMS V9内容页调用无链接栏目名称》
文章链接:https://www.ediok.cn/blog/2013/03/187.html
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。

评论 2

评论前必须登录!

 

  1. #2

    感谢分享!超级赞!

    Kathleen 江苏省12年前 (2013-05-24)
  2. #1

    还是不行?

    zhoutao 江苏省12年前 (2013-03-28)

关注互联网发展前沿,关注PHPCMS技术演进,钻研PHPCMS技术开发

模块开发联系我们

觉得文章有用就打赏一下文章作者

非常感谢你的打赏,我们将继续给力更多优质内容,让我们一起创建更加美好的网络世界!

支付宝扫一扫打赏

微信扫一扫打赏