您现在的位置是:首页 > cms教程 > DedeCMS教程DedeCMS教程
dedecms中文章页面上一篇下一篇链接处怎么增加文章摘要
沈锵良2024-05-18DedeCMS教程已有人查阅
导读DedeCMS系统默认的是在文章的上一篇和下一篇的链接只显示标题,但是有时我们希望显示其他信息,比如文章的摘要。找到arc.archives.class.php文件,在include目录下面
DedeCMS系统默认的是在文章的上一篇和下一篇的链接只显示标题,但是有时我们希望显示其他信息,比如文章的摘要。找到arc.archives.class.php文件,在include目录下面,然后查找“GetPreNext”这个函数,将
需要注意的是这里的jcode_archives和jcode_arctype中的jcode_是我表结构的前缀,你需要将这个前缀改成你自己的。
现在我们已经将文章描述从数据库里面取出来了。下一步将描述显示在页面上,显示连接文字的代码本来是这样的,你可以通过查找找到,其实就在上面那段代码的附近:
$query
= "Select
arc.id,arc.title,arc.shorttitle,arc.typeid,arc.ismake,arc.senddate,arc.arcrank,arc.money,arc.filename,arc.litpic,
t.typedir,t.typename,t.namerule,t.namerule2,t.ispart,t.moresite,t.siteurl,t.sitepath
from `jcode_archives` arc left join jcode_arctype t on arc.typeid=t.id ";
改成:
$query = "Select
arc.id,arc.title,arc.shorttitle,arc.typeid,arc.ismake,arc.senddate,arc.arcrank,arc.money,arc.filename,arc.litpic,
arc.description,t.typedir,t.typename,t.namerule,t.namerule2,t.ispart,t.moresite,t.siteurl,t.sitepath
from `jcode_archives` arc left join jcode_arctype t on arc.typeid=t.id ";
比较一下其实现在只是多了arc.description,这就是文章的摘要,也称为文章描述。需要注意的是这里的jcode_archives和jcode_arctype中的jcode_是我表结构的前缀,你需要将这个前缀改成你自己的。
现在我们已经将文章描述从数据库里面取出来了。下一步将描述显示在页面上,显示连接文字的代码本来是这样的,你可以通过查找找到,其实就在上面那段代码的附近:
if(is_array($preRow))
{
$mlink =
GetFileUrl($preRow['id'],$preRow['typeid'],$preRow['senddate'],$preRow['title'],$preRow['ismake'],$preRow['arcrank'],
$preRow['namerule'],$preRow['typedir'],$preRow['money'],$preRow['filename'],$preRow['moresite'],$preRow['siteurl'],$preRow['sitepath']);
$this->PreNext['pre']
= "上一篇:<a href='$mlink'>{$preRow['title']}</a>
";
$this->PreNext['preimg'] = "<a href='$mlink'><img
src="{$preRow['litpic']}" alt="{$preRow['title']}"/></a>
";
}
else
{
$this->PreNext['pre'] = "上一篇:没有了 ";
$this->PreNext['preimg']
="<img src="/templets/default/images/nophoto.jpg"
alt="对不起,没有上一图集了!"/>";
}
if(is_array($nextRow))
{
$mlink =
GetFileUrl($nextRow['id'],$nextRow['typeid'],$nextRow['senddate'],$nextRow['title'],$nextRow['ismake'],$nextRow['arcrank'],
$nextRow['namerule'],$nextRow['typedir'],$nextRow['money'],$nextRow['filename'],$nextRow['moresite'],$nextRow['siteurl'],$nextRow['sitepath']);
$this->PreNext['next']
= "下一篇:<a href='$mlink'>{$nextRow['title']}</a>
";
$this->PreNext['nextimg'] = "<a href='$mlink'><img
src="{$nextRow['litpic']}" alt="{$nextRow['title']}"/></a>
";
}
else
{
$this->PreNext['next'] = "下一篇:没有了 ";
$this->PreNext['nextimg'] ="<a href='javascript:void(0)'
alt=""><img src="/templets/default/images/nophoto.jpg"
alt="对不起,没有下一图集了!"/></a>";
}
}
现在为了显示出文章描述,在每一个a标签之后添加一个div div中包含文章描述:
if(is_array($preRow))
{
$mlink =
GetFileUrl($preRow['id'],$preRow['typeid'],$preRow['senddate'],$preRow['title'],$preRow['ismake'],$preRow['arcrank'],
$preRow['namerule'],$preRow['typedir'],$preRow['money'],$preRow['filename'],$preRow['moresite'],$preRow['siteurl'],$preRow['sitepath']);
$this->PreNext['pre']
= "上一篇:<a href='$mlink'>{$preRow['title']}</a> <div>{$preRow['description']}</div>
";
$this->PreNext['preimg'] = "<a href='$mlink'><img
src="{$preRow['litpic']}" alt="{$preRow['title']}"/></a> <div>{$preRow['description']}</div> ";
}
else
{
$this->PreNext['pre']
= "上一篇:没有了 ";
$this->PreNext['preimg'] ="<img
src="/templets/default/images/nophoto.jpg"
alt="对不起,没有上一图集了!"/>";
}
if(is_array($nextRow))
{
$mlink =
GetFileUrl($nextRow['id'],$nextRow['typeid'],$nextRow['senddate'],$nextRow['title'],$nextRow['ismake'],$nextRow['arcrank'],
$nextRow['namerule'],$nextRow['typedir'],$nextRow['money'],$nextRow['filename'],$nextRow['moresite'],$nextRow['siteurl'],$nextRow['sitepath']);
$this->PreNext['next']
= "下一篇:<a href='$mlink'>{$nextRow['title']}</a> <div>{$preRow['description']}</div>
";
$this->PreNext['nextimg'] = "<a href='$mlink'><img
src="{$nextRow['litpic']}" alt="{$nextRow['title']}"/></a> <div>{$preRow['description']}</div> ";
}
else
{
$this->PreNext['next']
= "下一篇:没有了 ";
$this->PreNext['nextimg'] ="<a href='javascript:void(0)'
alt=""><img src="/templets/default/images/nophoto.jpg"
alt="对不起,没有下一图集了!"/></a>";
}
}
这样做的话能显示文章摘要,但是格式可能会很乱,你可以根据需要增加样式。
本文标签:
很赞哦! ()
相关教程
图文教程
dedecms系统实现树形分类导航方法
这样就实现了树形分类导航用dede代码就可以实现,
dedecms专题节点列表内容分页的实现方法示例
1、打开 /include/arc.specview.class.php 文件找到$ctag = $this->dtp->GetTag("page");在
dedecms地区联动搜索彻底解决办法
本例以文章模型为列子 0 添加 联动类型地区。织梦dedecms地区联动搜索 彻底解决办法 :本例以文章模型为列子
织梦dedecms后台编辑器样式错乱变为p x="" yle=的解决办法
代码号最近在用图集模型建站的时候,新建了一个自定义模型,为HTML文本。建立之后发布完成文档后,点击编辑后,样式竟然全部出现了错乱。
相关源码
-
(响应式)企业管理人力资源服务类pbootcms模板源码下载为人力资源服务及企业管理设计的响应式网站模板,基于PbootCMS内核开发。通过宽屏布局优化岗位展示效果,简洁界面聚焦人才服务核心业务,自适应技术确保在PC端与手机端查看源码 -
(自适应响应式)水墨风白酒酿制酒业酒文化酒类产品网站源码下载本模板基于PbootCMS内核开发,为酒类企业打造的水墨风响应式网站解决方案。采用传统东方美学设计语言,呈现白酒文化底蕴,自适应移动端展示效果,数据实时同步更新,助力酒企建立专业数字化形象。查看源码 -
帝国cms7.5大型游戏资讯门户网站源码免费下载本模板基于帝国CMS7.5内核开发,为大型游戏资讯门户网站设计。模板自带响应式手机版,适配多种终端设备。内容架构针对游戏行业特点优化,支持游戏资讯、评测、攻略等内容类型的发布与管理。查看源码 -
(自适应)html5导航目录索引工具类网站源码下载本模板基于PbootCMS开发,为站长导航、网址导航类网站设计。采用HTML5+CSS3技术构建,适配PC端和移动端,提供流畅的浏览体验。适用于个人站长、资源导航平台等场景查看源码 -
(自适应响应式)高新技术科技能源pbootcms网站HTML5模板本模板基于PbootCMS内核开发,为高新技术、科技研发、能源技术等科技型企业设计。采用HTML5+CSS3前沿技术,具备完善的响应式布局,能够自动适配手机、平板和电脑等多种终端设备。模板设计风格简约大气查看源码 -
(自适应)中英文双语外贸扬声器音响喇叭话筒网站模板免费下载为音响设备外贸企业设计的中英文双语网站模板,基于PbootCMS内核开发。适配扬声器系统、音频设备等产品的国际化展示需求查看源码
| 分享笔记 (共有 篇笔记) |
