dedecms5.7文章实现阅读全文功能二次开发
发布:smiling 来源: PHP粉丝网 添加日期:2014-10-17 16:48:08 浏览: 评论:0
阅读全文功能其实在很多的流行站点都有的,比如网易,新浪等,随着文章内容的增加,当一个页面有多个分页的时候,就会显示出这个“在本页阅读全文”的链接,点击这个链接之后出现的,将是这篇文章以没有分页出现的型式,那么在dedecms5.7如何在文章内容页添加阅读全文功能呢?
这个阅读全文有什么用呢?说白了,也就是提高用户体验,下面让我们看看,怎么简单现实这个功能.
修改文件:include/arc.archives.class.php
注意:做任何修改前都要备份好原文件.
第一步:打开include/arc.archives.class.php
文件查找://issystem==-1
往下 大概 145行 找到 $this->Fields['userip'] = $this->addTableRow['userip'];
在下面一行添加:$this->Fields['body2'] = $this->addTableRow['body'];
第二步查找:$this->dsql->ExecuteNoneQuery("Update `#@__archives` SET ismake=1 WHERE id='".$this->ArcID."'");
在上一行添加以下代码:
- //阅读全文开始
- if($this->TotalPage > 1) {
- //用正则匹配把分页符去掉
- $this->Fields['body2'] = preg_replace('/#p#副标题#e#/U', '',$this->Fields['body2']);
- $this->SplitFields = explode("#p2222#",$this->Fields['body2']);
- $this->Fields['tmptitle'] = (emptyempty($this->Fields['tmptitle']) ? $this->Fields['title'] : $this->Fields['tmptitle']);
- $this->Fields['title'] = $this->Fields['tmptitle'];
- $this->TotalPage = count($this->SplitFields);
- $this->Fields['totalpage'] = $this->TotalPage;
- $TRUEfilenameall = $this->GetTruePath().$fileFirst."_all.".$this->ShortName;
- $this->ParseDMFields(1,0);
- $this->dtp->SaveTo($TRUEfilenameall);
- if($cfg_remote_site=='Y' && $isremote == 1)
- {
- //分析远程文件路径
- $remotefile = str_replace(DEDEROOT, '', $TRUEfilename);
- $localfile = '..'.$remotefile;
- //创建远程文件夹
- $remotedir = preg_replace("#[^\/]*\.html#", '', $remotefile);
- $this->ftp->rmkdir($remotedir);
- $this->ftp->upload($localfile, $remotefile, 'ascii');
- } //phpfensi.com
- }
- //阅读全文结束
第三步:查找 获得静态页面分页列表,代码如下:
- /**
- * 获得静态页面分页列表
- *
- * @access public
- * @param int $totalPage 总页数
- * @param int $nowPage 当前页数
- * @param int $aid 文档id
- * @return string
- */
- function GetPagebreak($totalPage, $nowPage, $aid)
- {
- if($totalPage==1)
- {
- return "";
- }
- //$PageList = "<li><a>共".$totalPage."页: </a></li>";
- $PageList = "";
- $nPage = $nowPage-1;
- $lPage = $nowPage+1;
- if($nowPage==1)
- {
- $PageList.="<a href='javascript:void(0);'><</a>";
- }
- else
- {
- if($nPage==1)
- {
- $PageList.="<a href='".$this->NameFirst.".".$this->ShortName."' target='_self'><</a>";
- }
- else
- {
- $PageList.="<a href='".$this->NameFirst."_".$nPage.".".$this->ShortName."' target='_self'><</a>";
- }
- }
- for($i=1;$i<=$totalPage;$i++)
- {
- if($i==1)
- {
- if($nowPage!=1)
- {
- $PageList.="<a href='".$this->NameFirst.".".$this->ShortName."' target='_self'>1</a>";
- }
- else
- {
- $PageList.="<a class=\"here\" href='javascript:void(0);' target='_self'>1</a>";
- }
- }
- else
- {
- $n = $i;
- if($nowPage!=$i)
- {
- $PageList.="<a href='".$this->NameFirst."_".$i.".".$this->ShortName."' target='_self'>".$n."</a>";
- }
- else
- {
- $PageList.="<a class=\"here\" href='javascript:void(0);' target='_self'>{$n}</a>";
- }
- }
- }
- if($lPage <= $totalPage)
- {
- $PageList.="<a href='".$this->NameFirst."_".$lPage.".".$this->ShortName."' target='_self'>></a>";
- }
- else
- {
- $PageList.= "<a href='javascript:void(0);'>></a>";
- }
- $PageList.= "<a href='".$this->NameFirst."_all.".$this->ShortName."'>阅读全文</a>";
- return $PageList;
- }
也就是在return $PageList 上一行添加了一行代码:
$PageList.= "<a href='".$this->NameFirst."_all.".$this->ShortName."'>阅读全文</a>";
修改完成后,保存文件,更新一下页面就可以看到效果了.
Tags: dedecms阅读全文 dedecms文章
相关文章
- ·dedecms5.7文章实现阅读全文功能二次开发(2015-11-11)
- ·dedecms文章页调用tag标签实现方法(2014-03-16)
- ·dedecms实现自动打包文章中图片并下载(2014-10-17)
- ·dedecms文章添加多说评论(2014-11-02)
- ·在dedecms5.7首页和列表页模板中怎样动态调用文章浏览次数(2014-11-03)
- ·织梦DeDeCMS动态热点文章排行调用(2014-11-03)
- ·织梦dedecms网站后台文章添加问题(2014-11-03)
- ·修改织梦dedecms文章标题长度方法(2014-11-04)
- ·dedecms文章内容页中的收藏功能收藏的文章路径错误问题解决(2014-11-07)
- ·DEDECMS调用栏目名和栏目里的文章数(2014-11-09)
- ·dedecms教程:给文章页加上当前文章网址的方法(2014-11-11)
- ·dedecms文章怎么同步发到我的微博?(2014-11-11)
- ·10天学会dedecms网站开发之文章详情页 article_模板.htm(2014-11-11)
- ·DEDECMS首页和栏目页文章按权重排序如何修改调用?(2014-11-11)
- ·Dedecms织梦文章中摘要field:description乱码问题(2014-11-11)
- ·dedecms文章自动加内链插件(2014-11-12)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)