Blogger Information
Blog 62
fans 3
comment 1
visits 29900
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
dede 面包屑导航 去掉首页(英文站最适宜)
kiraseo_wwwkiraercom
Original
1156 people have browsed it

以下最实用在双语站,英文站的用法

尤其是面包屑导航上最麻烦,还要修改源码,但对以后二次开发很不理想

截图如下  这是默认调用的方法 对一个站双语站的时候很不友好

1577807511.png

为了更适合双语站的修改,对当前面包蟹导航进行修改

实例

{dede:field name='position' runphp='yes'}
                $tc=" > ";
                $array=explode($tc,@me);
                $ary=array_shift($array);
                @me= implode($tc,$array);               
{/dede:field}


另外一种方法使用php函数方式

function daohang($i){
                $tc=" > ";
                $array=explode($tc,$i);
                $ary=array_shift($array);
                return implode($tc,$array);  

}

温馨提醒,如果使用自定义函数话一定要写在(extend.func.php)文件中

文件所属位置:域名/include/extend.func.php 文件里面即可

书写的简单查看,是否有相同函数名字,如有,记得修改(同时修改的时候,调用自己修改后的函数名)

实例

{dede:field.positionfunction="daohang(@me)"/}

效果图截图如下

1577807511.png

这就完成了


本文章为作者原创,没有作者授权,请勿转载!!!



Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post