1、去掉后面的>:
找到include里的typelink.class.php中的
return this−>valuePosition.this->SplitSymbol;  
替换成:
return $this->valuePosition
2、当前位置:
{dede:field name='position'/}
3、去掉后面的>第二种方法:
{dede:field name='position' runphp='yes'}
$a=mb_strlen(@me);//计算字符串的长度
@me=cn_substr(@me,$a-2,-1);//截取字符
{/dede:field}
4、{dede:field name='position'/} 中去掉 > 并去掉最后一个文本的链接的解决方案:
{dede:field name='position' runphp='yes'}
$tc=" > ";
$tf=split($tc,@me);
$tn=count($tf);
for($iij=0;$iij<($tn-1);$iij++){
if($iij==($tn-2)){$tf[$iij]=strip_tags($tf[$iij]);}
$tl=$tl.$tf[$iij];
 }
@me=$tl;
echo @me;
{/dede:field}
如果还需要分隔符的话,就把tl=tl.tf[iij]; 换成
tl=tl."空格分隔符空格".tf[iij];
5、您当前所在的位置:
<a href="/">本站首页</a>
{dede:channel type='top' currentstyle="<a href='~typelink~'>~typename~</a> "}
{/dede:channel} >