- 修改文件:
apps/home/controller/IndexController.php
- 修改位置:
- 列表页:142行附近
- 详情页:163行附近
- 单页:189行附近
- 修改代码:
- 列表页:
php
$content = str_replace('{pboot:pagetitle}', $pagetitle . '-{pboot:sitetitle}', $content);
- 详情页:
php
$content = str_replace('{pboot:pagetitle}', '{content:title}-{pboot:sitetitle}', $content);
- 单页:
php
$content = str_replace('{pboot:pagetitle}', $pagetitle . '-{pboot:sitetitle}', $content);
- 列表页:

