織夢dedecms上一篇下一篇調用標籤:{dede:prenext get='pre'/}{dede:prenext get='next'/}如何自定義織夢dedecms上一篇下一篇標籤調用內容呢。
方法/步驟
找到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('下一篇:沒有了');";
以上是文章內容模型的上一篇下一篇調用標籤。
圖集模型的修改地方如下: 找到這幾行: *$this->PreNext['preimg'] = " "; $this->PreNext['preimg'] =""; $this->PreNext['nextimg'] = " "; $this->PreNext['nextimg'] ="";
分別替換為以下幾行:
$this->PreNext['preimg'] = "$mlink";
$this->PreNext['preimg'] ="javascript:window.alert('對不起,沒有上一圖集了!');";
$this->PreNext['nextimg'] = "$mlink";
$this->PreNext['nextimg'] ="javascript:window.alert('對不起,沒有下一圖集了!');";
我們製作織夢模板的時候,一般都會對顯示標題的字數做控制,以免字數過多影響美觀等問題。
上一篇和下一篇鏈接我們都會用到,方便用戶瀏覽。
為了避免文章標題字數過多,影響美觀,我們可以對其進行控制。
1、編輯打開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個漢字
然後再重新生成所有頁面即可。