| 内容 | 
		     这篇文章主要介绍了织梦DedeCMS各种自定义当前位置顺序的方法,本文给出了两种效果的实现方法,需要的朋友可以参考下     代码如下:     {dede:field name='title'/}-{dede:field name='position' runphp='yes'}     $tc="-"; //分隔符     $tw=$GLOBALS['cfg_list_symbol']; //调用位置分隔符     @me=html2text(@me); //去除html标签     $tf=split($tw,@me); //分解成数组     for($ta=(count($tf)-2);$ta>=1;$ta--){ //循环赋值给$tk     $tk.=trim($tf[$ta]).$tc;     }     $tk=substr($tk,0,-1);     @me=$tk; //赋值给@me     {/dede:field}-{dede:global name='cfg_webname'/}     效果:文章标题-2级栏目-1级栏目-网站名     不过,应该可以更深的显示,比如:文章标题-3级栏目-2级栏目-1级栏目-网站名、文章标题-4级栏目3级栏目-2级栏目-1级栏目-网站名     代码如下:     {dede:field.title/}-{dede:type}[field:typename /]{/dede:type}-{dede:global.cfg_webname/}
  |