PbootCMS生成的 sitemap.xml 中增加 tag 標籤連結

黄文Rex發表於2024-11-04
  • 問題描述:PbootCMS預設生成的 sitemap.xml 不包含 tag 標籤連結。
  • 解決方法
    • 開啟 /apps/home/model/SitemapModel.php,在第78行後增加以下程式碼:
      // 指定分類標籤呼叫
      public function getSortTags($scode) {
          $join = array(
              array('ay_content_sort b', 'a.scode=b.scode', 'LEFT'),
              array('ay_model c', 'b.mcode=c.mcode', 'LEFT')
          );
          $scode_arr = array();
          if ($scode) {
              $this->scodes = array(); // 先清空
              $scodes = $this->getSubScodes(trim($scode)); // 獲取子類
              $scode_arr = array(
                  "a.scode in (" . implode_quot(',', $scodes) . ")",
                  "a.subscode='$scode'"
              );
          }
          $result = parent::table('ay_content a')
              ->where('a.status=1')
              ->where("c.type=2 AND a.tags<>'")
              ->where($scode_arr, 'OR')
              ->join($join)
              ->order('a.visits DESC')
              ->column('a.tags');
          return $result;
      }
    • 開啟 /apps/home/controller/SitemapController.php,在第73行後增加以下程式碼:
      if (!empty($rs = $this->model->getSortTags(''))) {
          $tags = implode(',', $rs); // 把欄目tags串起來
          $tags = array_unique(explode(',', $tags)); // 再把所有tags組成陣列並去重
          foreach ($tags as $key2 => $value2) {
              if (!in_array($value2, array_column($data, 'tags'))) { // 避免重複輸出
                  $url_rule_type = $this->config('url_rule_type') ?: 3;
                  if ($url_rule_type == 3) {
                      $link2 = Url::home('tag=' . urlencode($value2), '');
                  } else {
                      $link2 = Url::home('tag/' . urlencode($value2));
                  }
                  $str .= $this->makeNode($link2, date('Y-m-d'), '0.80');
              }
          }
      }

相關文章