sitemapp由PbotCMS生成.在xml中添加标签链接
2024-09-20 01:00:33
在修改这些文件之前,养成良好的习惯并做好备份。
1、打开/apps/home/model/SitemapModel.php,在78行后面添加一个指定的分类标签调用代码。
2、打开/apps/home/controller/SitemapController.php,在73行后面增加
// 调用指定的分类标签 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 AB模板网 $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'); } } } |