<tfoot id='wTunY'></tfoot>
  • <small id='wTunY'></small><noframes id='wTunY'>

    <i id='wTunY'><tr id='wTunY'><dt id='wTunY'><q id='wTunY'><span id='wTunY'><b id='wTunY'><form id='wTunY'><ins id='wTunY'></ins><ul id='wTunY'></ul><sub id='wTunY'></sub></form><legend id='wTunY'></legend><bdo id='wTunY'><pre id='wTunY'><center id='wTunY'></center></pre></bdo></b><th id='wTunY'></th></span></q></dt></tr></i><div id='wTunY'><tfoot id='wTunY'></tfoot><dl id='wTunY'><fieldset id='wTunY'></fieldset></dl></div>
        <legend id='wTunY'><style id='wTunY'><dir id='wTunY'><q id='wTunY'></q></dir></style></legend>
        • <bdo id='wTunY'></bdo><ul id='wTunY'></ul>

        PbootCMS生成的sitemap.xml中增加tag标签链接

        pbootcms默认生成的sitemap.xml中是不含tag标签链接的,如果我们想要实现在sitemap.xml直接生成tags标签,这个要怎么操作呢? 实现步骤 养好习惯,修改这些文件之前做好备份。 1、打开/apps/home/model/SitemapModel.php,在78行后面增加个指定分类标签调用

            • <bdo id='P6EAg'></bdo><ul id='P6EAg'></ul>

                <tbody id='P6EAg'></tbody>
              <tfoot id='P6EAg'></tfoot>

            • <i id='P6EAg'><tr id='P6EAg'><dt id='P6EAg'><q id='P6EAg'><span id='P6EAg'><b id='P6EAg'><form id='P6EAg'><ins id='P6EAg'></ins><ul id='P6EAg'></ul><sub id='P6EAg'></sub></form><legend id='P6EAg'></legend><bdo id='P6EAg'><pre id='P6EAg'><center id='P6EAg'></center></pre></bdo></b><th id='P6EAg'></th></span></q></dt></tr></i><div id='P6EAg'><tfoot id='P6EAg'></tfoot><dl id='P6EAg'><fieldset id='P6EAg'></fieldset></dl></div>

              • <small id='P6EAg'></small><noframes id='P6EAg'>

                <legend id='P6EAg'><style id='P6EAg'><dir id='P6EAg'><q id='P6EAg'></q></dir></style></legend>

                  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后台添加内容使用的是百度ueditor编辑器,ueditor上传图片会自动添加title、alt属性,属性值是图片的文件名,pbootcms模板中title为图片上传后的日期数字名称,小编接下来教大家去除title、alt的属性。 1、打开\core\extend\ueditor\ueditor.all.min.
                  问题描述 PbootCMS附件上传报错UNKNOW: Code: 8192; Desc: stripos(),具体显示如下图所示: 解决办法 打开/core/function/file.php,找到以下代码: if (stripos($types, $ext) !== false) 改为如下代码: if (stripos($types, chr($ext)) !== false)
                  最近有朋友在用到pbootcms建网站,他购买的是一个空间比较小的虚拟主机,时间一长空间就满了,网站就没法运行,只能手动删除下runtime这个缓存目录,如果我们要让系统自动删除清理缓存目录,要怎么操作呢? 首先将需要修改的问题做好备份,找到/apps/home/con
                  问题描述 我们在后台建立栏目时候,当建立一个栏目名称为news的时候,提示:URL名称与模型URL名称冲突,请换一个名称!这个要怎么操作呢? 解决办法 这种问题通常是和模型里的名称重复造成的。我们找到模型管理,找到和我们建立名称相同的url,例如:新闻栏
                  本文是针对后台文章列表每页显示数量的修改!pbootcms后台默认文章显示条数最大是200条/页,如果需要修改更多怎么办,只能去修改下后台相关代码。 打开\apps\admin\view\default\content\content.html,搜索每页显示数量,找到 option value="{url./admin/Con
                  用pbootcms时候,当一个字段为空时候,我们调用另外一个字段,要怎么写呢?其实方法很简单,比起dedecms还是比较容易调用的,调用方法如下: 比如我们建立了一个icos的字段为图片字段,当这个字段不为空时候就调用这个字段,为空时候就调用缩略图。 {pboot:if
                  <legend id='KzztU'><style id='KzztU'><dir id='KzztU'><q id='KzztU'></q></dir></style></legend>
                • <tfoot id='KzztU'></tfoot>
                  • <small id='KzztU'></small><noframes id='KzztU'>

                      <tbody id='KzztU'></tbody>

                      <bdo id='KzztU'></bdo><ul id='KzztU'></ul>

                        <i id='KzztU'><tr id='KzztU'><dt id='KzztU'><q id='KzztU'><span id='KzztU'><b id='KzztU'><form id='KzztU'><ins id='KzztU'></ins><ul id='KzztU'></ul><sub id='KzztU'></sub></form><legend id='KzztU'></legend><bdo id='KzztU'><pre id='KzztU'><center id='KzztU'></center></pre></bdo></b><th id='KzztU'></th></span></q></dt></tr></i><div id='KzztU'><tfoot id='KzztU'></tfoot><dl id='KzztU'><fieldset id='KzztU'></fieldset></dl></div>