$parser_model = model('home.Parser');
if (! ! $rs = $parser_model->getSortTags('')) {
$tags = implode(',', $rs); // 把欄目tags串起來
$tags = array_unique(explode(',', $tags)); // 再把所有tags組成數(shù)組并去重
foreach ($tags as $key2 => $value2) {
if (! in_array($value2, array_column($tags, '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');
}
}
}
實現(xiàn)sitemap.txt中增加tag頁面url
$parser_model = model('home.Parser');
if (! ! $rs = $parser_model->getSortTags('')) {
$tags = implode(',', $rs); // 把欄目tags串起來
$tags = array_unique(explode(',', $tags)); // 再把所有tags組成數(shù)組并去重
foreach ($tags as $key2 => $value2) {
if (! in_array($value2, array_column($tags, '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 .= get_http_url() . $link2 . "
";
}
}
}
完成以上兩步后即可實現(xiàn)sitemap.xml和sitemap.txt中調(diào)用tag鏈接。 版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: pbootcmsTAG在生成sitemap.xml地圖中增加tag鏈接的方法