首页 >

织梦DedeCMS如何让摘要只出现在文章的第一页

其实在织梦DedeCMS前台显示的时候,所有对文章内容的解析都是通过 /include/arc.archives.class.php 进行处理的,所有列表页的解析都是通过 /include/arc.listview.class.php进行处理的,
所以得走arc.archives.class.php里面去找。 要想读懂织梦DedeCMS里面的全部代码,还是有一些难度,反正是还没有完全把里面的代码搞懂。

还是直接说方法吧,打开/include/arc.archives.class.php 在找到ParseDMFields方法,在方法里面把if($pageNo>1) $this->Fields[‘description’] = trim(preg_replace(“/[\r\n\t]/”, ‘ ‘, cn_substr(html2text($this->Fields[$this->SplitPageField]), 200)));修改成if($pageNo>1) $this->Fields[‘description’] = ”;
它这里的意思就是,当页数大于0的时候 摘要就为空。 修改之后的结果就是
        $this->NowPage = $pageNo;        $this->Fields['nowpage'] = $this->NowPage;        if($this->SplitPageField!='' && isset($this->Fields[$this->SplitPageField]))        {            $this->Fields[$this->SplitPageField] = $this->SplitFields[$pageNo - 1];            //if($pageNo>1) $this->Fields['description'] = trim(preg_replace("/[\r\n\t]/", ' ', cn_substr(html2text($this->Fields[$this->SplitPageField]), 200)));if($pageNo>1) $this->Fields['description'] = '';        }

然后在模板调用的调用:
  {dede:field.description runphp='yes'}  if(@me'' )@me = '
'.@me.'

织梦DedeCMS如何让摘要只出现在文章的第一页'; {/dede:field.description}

织梦DedeCMS如何让摘要只出现在文章的第一页
  • 织梦DedeCMS远程图片遇到Https无法本地化解决办法
  • 织梦DedeCMS远程图片遇到Https无法本地化解决办法 | 织梦DedeCMS远程图片遇到Https无法本地化解决办法 ...

    织梦DedeCMS如何让摘要只出现在文章的第一页
  • 织梦DedeCMS独立模型中的联动类型字段是如何在文章页面中显示枚举名的
  • 织梦DedeCMS独立模型中的联动类型字段是如何在文章页面中显示枚举名的 | 织梦DedeCMS独立模型中的联动类型字段是如何在文章页面中显示枚举名的 ...

    织梦DedeCMS如何让摘要只出现在文章的第一页
  • 织梦DedeCMS任意页面调用栏目内容标签{dede:field.content/}的方法
  • 织梦DedeCMS任意页面调用栏目内容标签{dede:field.content/}的方法 | 织梦DedeCMS任意页面调用栏目内容标签{dede:field.content/}的方法 ...