惠州市络易科技有限公司

SEARCH

与我们合作

我们专注提供互联网一站式服务,助力企业品牌宣传多平台多途径导流量。
主营业务:网站建设、移动端微信小程序开发、营销推广、基础网络、品牌形象策划等

您也可通过下列途径与我们取得联系:

地 址: 广东省惠州市惠阳区镇隆镇井龙村万祥大道280 号厂区厂房三 C 栋 202 室

手 机: 13713208199

邮 箱: sales@loy.ltd

快速提交您的需求 ↓

LOYCMS英文站搜索结果页面包屑和标题翻译

更新时间:2024-04-17
查看:898

在使用LOYCMS搭建英文站时会发现搜索结果页的面包屑为中文,标题为英文,该如何处理?可二开增加英文站对应文字来解决。

image.png

修改内容

打开apps/home/controller/SearchController.php,把里面的代码全部替换成以下

  1. <?php 
    /** 
     * @copyright (C)2020-2099 loy.ltd. 
     * @author loy.ltd 
     * @email sales@loy.ltd 
     * @date 2020年3月8日 
     *  搜索控制器      
     */ 
    namespace app\home\controller; 
     
    use core\basic\Controller; 
    use core\basic\Url; 
     
    class SearchController extends Controller 
    { 
     
        protected $parser; 
     
        protected $htmldir; 
     
        public function __construct() 
        { 
            $this->parser = new ParserController(); 
            $this->htmldir = $this->config('tpl_html_dir') ? $this->config('tpl_html_dir') . '/' : ''; 
        } 
     
        // 内容搜索 
        public function index() 
        { 
            if (cookie('lg') == 'en') { 
                $searchtpl = request('searchtpl'); 
                if (! preg_match('/^[\w]+\.html$/', $searchtpl)) { 
                    $searchtpl = 'search.html'; 
                } 
                 
                $content = parent::parser($this->htmldir . $searchtpl); // 框架标签解析 
                $content = $this->parser->parserBefore($content); // CMS公共标签前置解析 
                $pagetitle = get('keyword') ? get('keyword') . '-' : ''; 
                $content = str_replace('{pboot:pagetitle}', $this->config('search_title') ?: $pagetitle . '搜索结果-{pboot:sitetitle}-{pboot:sitesubtitle}', $content); 
                $content = $this->parser->parserPositionLabel($content, 0, '搜索', Url::home('search')); // CMS当前位置标签解析 
                $content = $this->parser->parserSpecialPageSortLabel($content, - 1, '搜索结果', Url::home('search')); // 解析分类标签 
                $content = $this->parser->parserSearchLabel($content); // 搜索结果标签 
                $content = $this->parser->parserAfter($content); // CMS公共标签后置解析 
                echo $content; // 搜索页面不缓存 
                exit(); 
            } else { 
                $searchtpl = request('searchtpl'); 
                if (! preg_match('/^[\w]+\.html$/', $searchtpl)) { 
                    $searchtpl = 'search.html'; 
                } 
                 
                $content = parent::parser($this->htmldir . $searchtpl); // 框架标签解析 
                $content = $this->parser->parserBefore($content); // CMS公共标签前置解析 
                $pagetitle = get('keyword') ? get('keyword') . '-' : ''; 
                $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')); // CMS当前位置标签解析 
                $content = $this->parser->parserSpecialPageSortLabel($content, - 1, 'The search results', Url::home('search')); // 解析分类标签 
                $content = $this->parser->parserSearchLabel($content); // 搜索结果标签 
                $content = $this->parser->parserAfter($content); // CMS公共标签后置解析 
                echo $content; // 搜索页面不缓存 
                exit(); 
            } 
        } 
    }

替换效果

image.png



QQ客服 电话咨询