養(yǎng)好習(xí)慣,修改這些文件之前做好備份。
1、打開/apps/home/model/SitemapModel.php,在78行后面增加個指定分類標(biāo)簽調(diào)用代碼。
// 指定分類標(biāo)簽調(diào)用 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; } |
if (! ! $rs = $this->model->getSortTags('')) { $tags = implode(',', $rs); // 把欄目tags串起來 素材無憂網(wǎng) $tags = array_unique(explode(',', $tags)); // 再把所有tags組成數(shù)組并去重 foreach ($tags as $key2 => $value2) { if (! in_array($value2, array_column($data, 'tags'))) { // 避免重復(fù)輸出 $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'); } } } |
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: PbootCMS生成的sitemap.xml中增加tag標(biāo)簽鏈接