修改织梦dedecms文章页中的上下一篇

修改织梦dedecms文章页中的上下一篇,第1张

修改织梦dedecms文章页中的上/下一篇 在织梦dedecms文章内容页中都会用上一篇下一篇来提高网站文章之间的相关性,这样也有利于网站的收录,但是如果想要更改这里面的一些东西还要注意修改
找到include/arc.archives.class.php
查找
$this->PreNext['pre'] = "上一篇:{$preRow['title']} ";
修改为
$this->PreNext['pre'] = "{$preRow['title']}";
查找
$this->PreNext['pre'] = "上一篇:没有了";
修改为
$this->PreNext['pre'] = "你想要的文字 ";
查找
$this->PreNext['next'] = "下一篇:{$nextRow['title']} ";
修改为
$this->PreNext['next'] = "{$nextRow['title']} ";
查找
$this->PreNext['next'] = "下一篇:没有了 ";
修改为
$this->PreNext['next'] = "你想要的文字";
文章模板里调用代码
    {dede:prenext get='pre'/} {dede:prenext get='next'/}
CSS代码

.wz-pagelast .prev a {
    background: url("../images/icons.gif") no-repeat scroll 0 -224px transparent;
    float: left;
    height: 16px;
    line-height: 16px;
    padding-left: 22px;
}
.wz-pagelast .next a {
    background: url("../images/icons.gif") no-repeat scroll 100% -240px transparent;
    float: right;
    height: 16px;
    line-height: 16px;
    padding-right: 22px;
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/3007785.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-09-27
下一篇 2022-09-27

发表评论

登录后才能评论

评论列表(0条)

保存