dede中的当前位置position中的“主页”,替换成英


avatar
pcwnas 2023-04-21 202

原文来自:https://www.zixuephp.com

dede中的当前位置position中的“主页”,替换成英文!以此衍

dede中的当前位置position中的“主页”,替换成英文,以此衍生.

在做英文站的时候,我们网站的当前位置,地方是主页字样,系统不能变为英文home,现在只需要在调用标签的时候修改一下仿站参数就可以了.

PHP 代码复制内容到替换position

  1. {dede:fieldname='position'runphp='yes'}
  2. $b=array("主页");
  3. $c=array("home");
  4. @me=str_replace($b,$c,@me);
  5. {/dede:field}