欢迎来到3C源码网
3C源码网

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

日期: 2020-02-02 22:03:55

在织梦默认的调用文章上/下一篇的时候如果下面为空的就会出现“没有了”,但是如果想要出现这样的文字,而是自己独特设置的文字的话,就要在调用标签上下点功夫了。   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'] = "\"{$preRow['title']}\"/ "; $this->PreNext['preimg'] ="\"对不起,没有上一图集了!\"/"; $this->PreNext['nextimg'] = "\"{$nextRow['title']}\"/ "; $this->PreNext['nextimg'] ="\"对不起,没有下一图集了!\"/"; 分别替换为以下几行: $this->PreNext['preimg'] = "$mlink"; $this->PreNext['preimg'] ="javascript:window.alert('自己想要的话');"; $this->PreNext['nextimg'] = "$mlink"; $this->PreNext['nextimg'] ="javascript:window.alert('自己想要的话');";  

上一篇:dede怎么样限制上一篇、下一篇的标题字数

下一篇:dedecms织梦显示副栏目文章的方法