织梦正则自定义输出电脑站移动站上一篇下一篇文章
发布时间:2021-04-30 | 发布者: 东东工作室 | 浏览次数: 次不去修改程序文件,用标签和正则直接在内容页模板里直接输出上一篇下一篇的链接和标题和没有上一篇下一篇的提示文字
电脑站上一篇下一篇的链接
<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>
电脑站上一篇下一篇的链接和标题和没有上一篇下一篇的提示文字
{dede:prenext get=pre runphp=yes}
$str = @me;
$pattern = "/href=[\'"](.+?)[\'"]?>(.+?)</a>/";
preg_match_all($pattern,$str, $match);
@me = isset($match[1][0]) ? "<a href='{$match[1][0]}' title='{$match[2][0]}' class='l'><label class='a'><</label>上一篇</a>" : "没有上一篇了";
{/dede:prenext}
{dede:prenext get=next runphp=yes}
$str = @me;
$pattern = "/href=[\'"](.+?)[\'"]?>(.+?)</a>/";
preg_match_all($pattern,$str, $match);
@me = isset($match[1][0]) ? "<a href='{$match[1][0]}' title='{$match[2][0]}' class='r'>下一篇<label class='b'>></label></a>" : "没有下一篇了";
{/dede:prenext}
移动站上一篇下一篇的链接和标题和没有上一篇下一篇的提示文字
<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>
转载请标注:东东工作室——织梦正则自定义输出电脑站移动站上一篇下一篇文章
上一篇:织梦教程-第14页
推荐文章
相关文章