织梦正则自定义输出电脑站移动站上一篇下一篇文章
发布时间:2021-04-30 | 发布者: | 浏览次数: 次不去修改程序文件,用标签和正则直接在内容页模板里直接输出上一篇下一篇的链接和标题和没有上一篇下一篇的提示文字
电脑站上一篇下一篇的链接
电脑站上一篇下一篇的链接和标题和没有上一篇下一篇的提示文字
{dede:prenext get=pre runphp=yes}
$str = @me;
$pattern = "/href=[\'"](. ?)[\'"]?>(. ?)/";
preg_match_all($pattern,$str, $match);
@me = isset($match[1][0]) ? "" : "没有上一篇了";
{/dede:prenext}
{dede:prenext get=next runphp=yes}
$str = @me;
$pattern = "/href=[\'"](. ?)[\'"]?>(. ?)/";
preg_match_all($pattern,$str, $match);
@me = isset($match[1][0]) ? "" : "没有下一篇了";
{/dede:prenext}
移动站上一篇下一篇的链接和标题和没有上一篇下一篇的提示文字
{dede:prenext get=pre runphp=yes}
$preurl = @me;
preg_match('/aid=(d*)/',$preurl,$match);
$result = getonearchive($match[1]);
@me = !empty($result) ? "上一篇:" : "上一篇:没有了";
{/dede:prenext}
{dede:prenext get=next runphp=yes}
$preurl = @me;
preg_match('/aid=(d*)/',$preurl,$match);
$result = getonearchive($match[1]);
@me = !empty($result) ? "下一篇:" : "下一篇:没有了";
{/dede:prenext}
转载请标注:——
上一篇:
推荐文章
相关文章
热门文章