您现在的位置是:首页 > 教程 > dedecms教程dedecms教程
dede织梦文章页面的上一篇下一篇增加文章摘要的方法
陈茗卓2023-12-05 16:28:57dedecms教程已有人查阅
导读系统默认的是在dede的上一篇和下一篇的链接只显示标题,但是有时我们希望显示其他信息,比如文章的摘要。
系统默认的是在dede的上一篇和下一篇的链接只显示标题,但是有时我们希望显示其他信息,比如文章的摘要。
找到arc.archives.class.php文件,在include目录下面,然后查找“GetPreNext”这个函数,将
现在我们已经将文章描述从数据库里面取出来了。下一步将描述显示在页面上,显示连接文字的代码本来是这样的,你可以通过查找找到,其实就在上面那段代码的附近:
找到arc.archives.class.php文件,在include目录下面,然后查找“GetPreNext”这个函数,将
$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']}\" />";
}
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']}\" />";
}
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']}\" />}
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']}\" />}
else
{
$this->PreNext['next']
= "下一篇:没有了 ";
$this->PreNext['nextimg'] ="<a href='javascript:void(0)'
alt=\"\"><img src=\"/templets/default/images/nophoto.jpg\"
alt=\"对不起,没有下一图集了!\"/></a>";
}
}
本文标签:
很赞哦! ()
相关文章
- 让织梦文章列表有缩略图则显示缩略图,没有图不显示的方法
- 织梦文章列表页实现文章标题隔行换色的方法
- dede织梦文章列表 “隔行换色” 的实现方法
- dede织梦文章页用键盘左右键实现上下篇翻页功能
- 在dedecms织梦文章页面顶用告白图片添补没有图片的文章
- dedecms织梦文章列表加上序号效果
- dedecms织梦文章跳转属性打开后页面空白的原因及解决方法
- dedecms织梦文章生成在网站根目录的实现方法
- dedecms5.7织梦文章编辑器bug附件上传图标不显示的方法
- dede织梦文章、软件、图集的图片ALT自动变成完整标题的方法
- 修改dedecms5.7织梦文章内容关键词长度限制的方法
- 修改织梦dede织梦文章标题长度的方法
随机图文
-
dedecms织梦怎么添加二维码和调用
现在手机用户群里很庞大,那么站长们如何利用好二维码也是关键问题。下面告诉你如何在dede添加二维码教您如何在dede添加二维 -
织梦dedecms列表页实现有缩略图显示图文列表没有则文字列表
或者你可以进入代码号列表页查看效果,整体思路其实就是利用dedecms的[field:array runphp='yes']这个标签的@me包含了需要的所有标签, -
织梦dedecms自定义表单联动城市表单名称只显示数字或枚举值怎么办
我们在做完织梦自定义表单做城市二级三级联动后,前台页面显示没有问题,不过在后台获得的数据联动类型只显示枚举值, -
dedecms织梦首页单独调用栏目版块的办法
dedecms首页单独调用栏目版块的办法,以上是官方默认的首页版块调用,默认是调用全站二级栏目的,如果想单独调用某版块的话,可作以下设置:
留言与评论 (共有 条评论) |
大家在看
本栏推荐
相关标签
大家喜欢
- 两种方法实现dedecms栏目信息统计功能
- 办理dedecms织梦上传图片提示ERROR:Copy Uploadfile Error!
- dedecms5.5图片水印及图集手工上传无法加水印的解决方法
- 织梦dedecms列表页实现有缩略图显示图文列表没有则文字列表
- 织梦在任意标签中调用系统基本参数的办法
- dedecms织梦调用当前文档中TAG标签的方法
- 织梦后台更新栏目缓存文件/data/cache/inc_catalog_base.inc没有更新
- dede织梦UTF8版本ckeditor中多图发布按钮乱码怎么办
- DedeCMS首页和列表页调用图片集多张图片的方法
- dedecms实现tags云标签随机颜色与字体大小的方法