程序员人生 网站导航

如何修改PHPCMS导航条中的分隔符

栏目:DedeCMS时间:2014-04-15 18:40:27

  网(LieHuo.Net)教程 导航条的分划符采用CSS进行控制对很多人来说觉得很难处理,并且无所适从,一个简单的方法,找到include/global.inc.php这个文件.然后找到:

以下为引用的内容:

function catpos($catid, $urlrule = '')
{
global $CATEGORY;
if(!isset($CATEGORY[$catid])) return '';
$pos = '';
$arrparentid = array_filter(explode(',', $CATEGORY[$catid]['arrparentid'].','.$catid));
foreach($arrparentid as $catid)
{
  if($urlrule) eval("$url = "$urlrule";");
  else $url = $CATEGORY[$catid]['url'];
  $pos .= '<a href="'.$url.'">'.$CATEGORY[$catid]['catname'].'</a>';
}
return $pos;
}

  修改为:

以下为引用的内容:

function catpos($catid, $urlrule = '')
{
global $CATEGORY;
if(!isset($CATEGORY[$catid])) return '';
$pos = '';
$arrparentid = array_filter(explode(',', $CATEGORY[$catid]['arrparentid'].','.$catid));
foreach($arrparentid as $catid)
{
  if($urlrule) eval("$url = "$urlrule";");
  else $url = $CATEGORY[$catid]['url'];
  $pos .= '>><a href="'.$url.'">'.$CATEGORY[$catid]['catname'].'</a>';
}
return $pos;
}

  若想插入图片或者其他符号则将>>改为<img src="你的图片地址" />即可。

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐