您当前的位置:易学堂 > EM&TP

emlog 修改分类页标题和标签页标题

时间:2019-02-10 17:37:48

分类页和标签页浏览器标题是标签名+主title题 

现在改成标签名+ 自定义标题分别修改

include/controller/sort_controller.php

include/controller/tag_controller.php

中的$site_title就可以了

比如标签页

$site_title = stripslashes($tag) . ' - ' . $site_title;

修改成

$site_title = stripslashes($tag) . ' - 自定义文字';

好了,就这么简单,就是修改程序文件。