DedeCMS上下篇标题调用缩略图的方法

走过山头,坐在夕阳勾勒的黄昏里,吹一缕向晚的凉风,听树叶婆娑着沙沙的声响。望着天边绯红的落日渐渐西沉,透过头顶的树隙,仍有一抹余温爬上微热的脸庞。

有时候我们需要在文章内容调用上下篇文章的缩略图,但是织梦默认没有调用上下篇文章缩略图的标签,不过我们自有办法,下面,织梦技术研究中心就教大家实现方法,首先我们需要找到并打开include下的arc.archives.class.php文件,在里面找到:

arc.money,arc.filename,


在后面添加

arc.litpic,


然后查找:

$this->PreNext['pre'] = "上一篇:<a rel="nofollow noopener noreferrer" href='$mlink'>{$preRow['title']}</a> ";


替换为:

if(empty($preRow['litpic'])) { $this->PreNext['pre'] = "上一篇:<a rel="nofollow noopener noreferrer" href='$mlink'>{$preRow['title']}</a> "; }else{ $preimage = str_replace('/photo-img', 'http://www.dedejs.com',trim($preRow['litpic'])); $this->PreNext['pre'] = "<div class=\&;photo_article_pre\&;> <div class=\&;pre_photo\&;><a rel="nofollow noopener noreferrer" href=\&;$mlink\&;><img src=\&;$preimage\&; alt=\&;上一篇:{$preRow['title']}\&;></a></div> <div class=\&;pre_right\&;> <p>上一篇:{$preRow['title']}</p> <div class=\&;photo_textlink\&;>◀<a rel="nofollow noopener noreferrer" href=\&;$mlink\&;>浏览上一张图片</a></div> </div></div>"; }


然后查找:

$this->PreNext['next'] = "下一篇:<a rel="nofollow noopener noreferrer" href='$mlink'>{$nextRow['title']}</a> ";


替换为:

if(empty($nextRow['litpic'])) { $this->PreNext['next'] = "下一篇:<a rel="nofollow noopener noreferrer" href='$mlink'>{$nextRow['title']}</a> "; }else{ $nextimage = str_replace('/photo-img', 'http://www.dedejs.com',trim($nextRow['litpic'])); $this->PreNext['next'] = "<div class=\&;photo_article_next\&;> <div class=\&;pre_photo\&;><a rel="nofollow noopener noreferrer" href=\&;$mlink\&;><img src=\&;$nextimage\&; alt=\&;下一篇:{$nextRow['title']}\&;></a></div> <div class=\&;pre_right\&;> <p>下一篇:{$nextRow['title']}</p> <div class=\&;photo_textlink\&;>▶<a rel="nofollow noopener noreferrer" href=\&;$mlink\&;>浏览下一张图片</a></div> </div></div>"; }


注意上面红色的网址改为你自己的。
修改完成后就可以更新全站文档了,看看效果吧!

本文DedeCMS上下篇标题调用缩略图的方法到此结束。想要看清事实,必须要经历一些疼痛。小编再次感谢大家对我们的支持!

您可能有感兴趣的文章
dedecms如何实现任意页面调用当前会员信息的方

DedeCMS织梦判断是否有二级栏目输出HTML代码

织梦dedecms dede:arclist输出取消换行符

dedecms文章添加字段填栏目id,内容页调用字段里的栏目文章

dedeCMS首页列表页文章页调用tag的方法