首页 > CMS > 织梦DEDE > 正文

织梦dedecms自定义输出移动版上一篇下一篇文章

2024-07-12 08:59:56
字体:
来源:转载
供稿:网友

织梦dedecms自定义输出移动版上一篇下一篇文章代码如下:

1
2
3
4
5
6
7
8
9
10
11
<li>{dede:prenext get=pre runphp=yes}
$preurl = @me;
preg_match('/aid=(/d*)/',$preurl,$match);
$result = GetOneArchive($match[1]);
@me = !empty($result) ? "上一篇:<a href=/"/m{$result['arcurl']}/">{$result['title']}</a>" : "上一篇:没有了";
{/dede:prenext}</li><li>{dede:prenext get=next runphp=yes}
$preurl = @me;
preg_match('/aid=(/d*)/',$preurl,$match);
$result = GetOneArchive($match[1]);
@me = !empty($result) ? "下一篇:<a href=/"/m{$result['arcurl']}/">{$result['title']}</a>" : "下一篇:没有了";
{/dede:prenext}</li>

 

电脑版上一篇下一篇文章调用如下:

1
2
3
4
5
6
<li>
<a href="{dede:prenext get=pre runphp=yes}$url = @me;preg_match('/href=[/'/"]?([^/'/"]+)/', $url, $match);@me = $match[1];{/dede:prenext}">上一篇</a>
</li>
<li>
<a href="{dede:prenext get=next runphp=yes}$url = @me;preg_match('/href=[/'/"]?([^/'/"]+)/', $url, $match);@me = $match[1];{/dede:prenext}">上一篇</a>
</li>

 

织梦dedecms自定义输出移动版上一篇下一篇文章

 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表