pbootcms模板英文站搜尋效果頁面包屑顯示最佳化

黄文Rex發表於2024-11-04
  • 開啟 \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'));
      }

相關文章