dedecms织梦移动端利用正则来自定义输出上一篇下一篇
手机端由于版面的特殊性,一般很少使用1,2,3,4这样的分页习惯,直接用上一篇,下一篇代替,代码如下:
{dede:prenext get=pre runphp=yes}
$preurl = @me;
preg_match(‘/aid=(d*)/’,$preurl,$match);
$result = GetOneArchive($match[1]);
@me = !empty($result) ? “上一篇:{$result[‘title’]}” : “上一篇:没有了”;
{/dede:prenext}
{dede:prenext get=next runphp=yes}
$preurl = @me;
preg_match(‘/aid=(d*)/’,$preurl,$match);
$result = GetOneArchive($match[1]);
@me = !empty($result) ? “下一篇:{$result[‘title’]}” : “下一篇:没有了”;
{/dede:prenext}
☉免责声明:本站所有模板均来自用户分享和网络收集,仅供学习与参考,请勿用于商业用途,如果损害了您的权利,请联系网站客服,我们核实后会立即删除。
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » dedecms织梦移动端利用正则来自定义输出上一篇下一篇
☉本站提供的源码、模板、软件工具等其他资源,都不包含技术服务,请大家谅解!
pbootcms模板网 » dedecms织梦移动端利用正则来自定义输出上一篇下一篇