打开Discuz!根目录下sourceclasshelperhelper_seo.php文件
找到如下代码:
public static function strreplace_strip_split($searchs, $replaces, $str) { $searchspace = array('((s*-s*)+)', '((s*,s*)+)', '((s*|s*)+)', '((s*ts*)+)', '((s*_s*)+)'); $replacespace = array('-', ',', '|', ' ', '_'); return trim(preg_replace($searchspace, $replacespace, str_replace($searchs, $replaces, $str)), ' ,-|_'); } |
修改$replacespace数组里的值,如果是“论坛 – 某某网址”,那么只需要将"-"改为带前后空格的" – "就好了。
© 版权声明
THE END
喜欢就支持一下吧
相关推荐
暂无评论内容