織夢模板下載dedecms獲取上一篇下一篇文章鏈接的代碼
時間: 2018-11-20 09:33
閱讀: 次
作者:素材無憂網
我們知道,在文章頁調用前后文章的鏈接和標題,dedecms默認上一篇和下一篇的標簽分別為{dede:prenext get='pre'/} {dede:prenext get='next'/}。有時出于需要,我們只需要鏈接而不用標題,要怎么操作呢?大家應該能想到要用正則吧?沒錯!下面給出最終實現(xiàn)代碼。
上一篇地址
復制代碼代碼如下:
{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}
延伸:修改上下文章字數(shù)的方法
編輯打開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個漢字
然后再重新生成所有頁面即可。
標簽: