请问pbootcms模板英文站搜索效果页面包屑显示优化
- 打开
\apps\home\controller\SearchController.php
文件,根据版本替换代码:- 2.1.1 版本:
if (cookie('lg') == 'cn') { // 中文处理 } else { // 英文处理 $content = str_replace('{pboot:pagetitle}', $this->config('search_title') ?: $pagetitle . 'The search results-{pboot:sitetitle}-{pboot:sitesubtitle}', $content); $content = $this->parser->parserPositionLabel($content, 0, 'Search', homeurl('search')); $content = $this->parser->parserSpecialPageSortLabel($content, -1, 'The search results', homeurl('search')); }
- 3.0.3 版本:
if (cookie('lg') == 'cn') { // 中文处理 } else { // 英文处理 $content = str_replace('{pboot:pagetitle}', $this->config('search_title') ?: $pagetitle . 'The search results-{pboot:sitetitle}-{pboot:sitesubtitle}', $content); $content = $this->parser->parserPositionLabel($content, 0, 'Search', Url::home('search')); $content = $this->parser->parserSpecialPageSortLabel($content, -1, 'The search results', Url::home('search')); }
- 2.1.1 版本:
更新时间:2025-04-11 00:01:56
上一篇:请问PbootCMS:帐号格式不正确,请输入正确的邮箱帐号!(1)
下一篇:请问PbootCMS附件上传失败报错UNKNOW_ Code_ 8192; Desc_ stripos()_
转载请注明原文链接:https://www.muzicopy.com/suibi/4427.html