栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > PHP > php开源框架 > dedecms

dede修改上/下一篇中的“没有了”

dedecms 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

dede修改上/下一篇中的“没有了”

在织梦默认的调用文章上/下一篇的时候如果下面为空的就会出现“没有了”,但是如果想要出现这样的文字,而是自己独特设置的文字的话,就要在调用标签上下点功夫了。

dedecms上一篇下一篇的调用标签:

{dede:prenext get='pre'/}
{dede:prenext get='next'/}
dede修改上/下一篇中“没有了”的方法

方法一:直接删除“没有了”

打开include/arc.archives.class.php
找到
$this->PreNext['pre'] = "上一篇:{$preRow['title']} ";
$this->PreNext['pre'] = "上一篇:没有了";
$this->PreNext['next'] = "下一篇:{$nextRow['title']} ";
$this->PreNext['next'] = "下一篇:没有了 ";
删除“没有了”即可

方法二:使用其他代码替换“没有了”

打开include/arc.archives.class.php
找到
$this->PreNext['pre'] = "上一篇:{$preRow['title']} ";
$this->PreNext['pre'] = "上一篇:没有了";
$this->PreNext['next'] = "下一篇:{$nextRow['title']} ";
$this->PreNext['next'] = "下一篇:没有了 ";
分别替换为以下几行:
$this->PreNext['pre'] = "$mlink";
$this->PreNext['pre'] = "javascript:window.alert('上一篇:自己想要的话');";
$this->PreNext['next'] = "$mlink";
$this->PreNext['next'] = "javascript:window.alert('下一篇:自己想要的话');";

以上就是在文章内容模型中的修改方法了,如果想要在图集中也不显示“没有了”,还要做一些修改:

打开include/arc.archives.class.php
找到
*$this->PreNext['preimg'] = " ";
$this->PreNext['preimg'] ="";
$this->PreNext['nextimg'] = " ";
$this->PreNext['nextimg'] ="";
分别替换为以下几行:
$this->PreNext['preimg'] = "$mlink";
$this->PreNext['preimg'] ="javascript:window.alert('自己想要的话');";
$this->PreNext['nextimg'] = "$mlink";
$this->PreNext['nextimg'] ="javascript:window.alert('自己想要的话');";

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/5366.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号