织梦自20150618以后的版本升级后,M功能手机站出现,由于程序编写有一个错误,导致手机站文章页上一篇 下一篇链接错误。今天织梦58分享下修改教程,修复下程序,希望对您有帮助。
解决方法一:
1.打开 include/arc.archives.class.php 文件
首先查找:第839行
1 | $mlink = 'view.php?aid=' .$preRow[ 'id' ]; |
|
改成:
1 | $mlink = 'view.php?aid=' .$nextRow[ 'id' ]; |
|
解决方法二:
1.打开 include/arc.archives.class.php 文件
首先查找:
1 | $this->PreNext[ 'pre' ] = "上一篇:<a href='$mlink'>{$preRow['title']}</a> " ; |
|
在这段代码后面增加:
1 | $this->PreNext[ 'prem' ] = "上一篇:<a href='view.php?aid={$preRow['id']}'>{$preRow['title']}</a> " ; |
|
继续查找:
1 | $this->PreNext[ 'next' ] = "下一篇:<a href='$mlink'>{$nextRow['title']}</a> " ; |
|
在这段代码后面增加:
1 | $this->PreNext[ 'nextm' ] = "下一篇:<a href='view.php?aid={$nextRow['id']}'>{$nextRow['title']}</a> " ; |
|
继续查找:
1 | else if ($gtype== 'nextimg' ){ |
2 |
$rs = $this->PreNext[ 'nextimg' ]; |
|
在这段代码后面增加:
2 |
$rs = $this->PreNext[ 'prem' ]; |
4 | else if ($gtype== 'nextm' ){ |
5 |
$rs = $this->PreNext[ 'nextm' ]; |
|
2.手机版上一篇调用代码:
{dede:prenext get='prem'/}
手机版下一篇调用代码:
{dede:prenext get='nextm'/}
郑重声明:
本站所有内容均由互联网收集整理、网友上传,并且以计算机技术研究交流为目的,仅供大家参考、学习,不存在任何商业目的与商业用途。
若您需要商业运营或用于其他商业活动,请您购买正版授权并合法使用。
我们不承担任何技术及版权问题,且不对任何资源负法律责任。
如无法下载,联系站长索要。
如有侵犯您的版权,请给我们来信:admin@cniao8.com,我们尽快处理。