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’] = “{$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(‘自己想要的话’);”;

☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » dede修改上/下一篇中的“没有了”

Pbootcms模板网 提供优质的模板集合

立即查看 了解详情