pbootcms默認生成的sitemap.xml中是不含tag標簽鏈接的,如果我們想要實現在sitemap.xml直接生成tags標簽,這個要怎么操作呢? 實現步驟 養好習慣,修改這些文件之前做好備份。 1、打開/apps/home/model/SitemapModel.php,在78行后面增加個指定分類標簽調用代
pbootcms默認生成的sitemap.xml中是不含tag標簽鏈接的,如果我們想要實現在sitemap.xml直接生成tags標簽,這個要怎么操作呢?
實現步驟
養好習慣,修改這些文件之前做好備份。1、打開/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;
}
2、打開/apps/home/controller/SitemapController.php,在73行后面增加
if (! ! $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');
}
}
}
完成以上兩步驟修改,即可實現這個功能,大家可以去試下。
網站源碼網
PbootCMS生成的sitemap.xml中增加tag標簽鏈接
最新VIP資源
猜你喜歡
- PbootCMS性能優化研究之提升網頁訪問速度 2023-04-11
- pbootcms網站容易被攻擊和被黑嗎? 2023-03-23
- PbootCMS后臺SEO標題規則設置 2023-04-14
- PbootCMS網站常見錯誤提示總結 2023-04-11
- pbootcms網站自動清理runtime緩存方法 2023-05-26
- pbootcms域名授權碼怎么獲取,獲取后怎么授權 2023-03-23
- pbootcms二次開發必須要了解的后臺目錄結構 2023-05-26
- pbootcms怎么推送發布的文章到百度 2023-04-08
- PbootCMS一些常用組合標簽調用代碼整理 2023-04-14
- PbootCMS的阿里云短信發送類 2023-04-03