修改织梦dedecms文章页中的上/下一篇
来源:本站原创|时间:2021-08-05|栏目:dedecms|点击: 次
在织梦dedecms文章内容页中都会用上一篇下一篇来提高网站文章之间的相关性,这样也有利于网站的收录,但是如果想要更改这里面的一些东西还要注意修改。
找到include/arc.archives.class.php
查找
$this->PreNext['pre'] = "上一篇:<a href='$mlink'>{$preRow['title']}</a> ";
修改为
$this->PreNext['pre'] = "<span class='prev'><a href='$mlink' rel='prev'>{$preRow['title']}</a></span>";
查找
$this->PreNext['pre'] = "上一篇:没有了";
修改为
$this->PreNext['pre'] = "<span class='prev'><a href='http://www.最模板zuimoban.com'>你想要的文字</a></span> ";
查找
$this->PreNext['next'] = "下一篇:<a href='$mlink'>{$nextRow['title']}</a> ";
修改为
$this->PreNext['next'] = "<span class='next'><a href='$mlink' rel='next'>{$nextRow['title']}</a></span> ";
查找
$this->PreNext['next'] = "下一篇:没有了 ";
修改为
$this->PreNext['next'] = "<span class='next'><a href='http://www.最模板zuimoban.com'>你想要的文字</a></span>";
文章模板里调用代码
<div class="wz-pagelast">{dede:prenext get='pre'/} {dede:prenext get='next'/} </div>
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;
}
您可能感兴趣的文章
- 08-05Dedecms文件目录结构解说(能知道织梦每个文件有什么用)
- 08-05Dedecms5.7版ckeditor网页编辑器添加中文字体
- 08-05织梦DedeCMS获取当前栏目文章数量
- 08-05织梦模板如何添加和调用自定义字段的方法
- 08-05DedeCMS后台模块列表显示空白的解决办法
- 08-05DedeCMS自定义字段图片调用的问题{dede:img ...}解决方法
- 08-05织梦DedeCMS调用显示discuz里面主题的方法
- 08-05限制织梦会员每天投稿数量方法
- 08-05常用的织梦dedecms安全设置集合整理
- 08-05织梦教程:后台编辑器添加中文字体方法