我们知道,在文章页调用前后文章的链接和标题,织梦dedecms默认上一篇和下一篇的标签分别为{dede:prenext get='pre'/} {dede:prenext get='next'/}。有时出于需要,我们只需要链接而不用标题,要怎么操作呢?大家应该能想到要用正则吧?没错!下面给出最终实现代码。
上一篇地址{dede:prenext get='pro' runphp="yes"}preg_match_all('/(.+?)</a.*?>/sim', @me, $strResult, PREG_PATTERN_ORDER);@me=$strResult[1][0];{/dede:prenext}
下一篇地址{dede:prenext get='next' runphp="yes"}preg_match_all('/(.+?)</a.*?>/sim', @me, $strResult, PREG_PATTERN_ORDER);@me=$strResult[1][0];{/dede:prenext}
延伸:修改上下文章字数的方法。编辑打开include/arc.archives.class.php文件查找:$this->PreNext['pre'] = "上一篇:{$preRow['title']} ";在这一行上面加上以下代码$preRow['title']=cn_substr($preRow['title'],30);//最多显示15个汉字查找:$this->PreNext['next'] = "下一篇:{$nextRow['title']} ";在这一行上面加上以下代码$nextRow['title']=cn_substr($nextRow['title'],30);//最多显示15个汉字然后再重新生成所有页面即可。