织梦获取上一篇下一篇链接的方法
时间:2015-06-22 阅读:次 QQ群:182913345
dedeCMS调用上一篇和下一篇的标签分别为{dede:prenext get='pre'/} {dede:prenext get='next'/},有时出于需要,我们只需要链接而不用标题,要怎么操作呢?大家应该能想到要用正则吧?没错!下面给出最终实现代码。
上一篇文章链接:
{dede:prenext get='pro' runphp="yes"} preg_match_all('/(.+?)<\/a.*?>/sim', @me, $strResult, PREG_PATTERN_ORDER); @me=$strResult[1][0]; {/dede:prenext} |
下一篇文章链接:
{dede:prenext get='next' runphp="yes"} preg_match_all('/(.+?)<\/a.*?>/sim', @me, $strResult, PREG_PATTERN_ORDER); @me=$strResult[1][0]; {/dede:prenext} |
上一篇:织梦缩略图失真模糊完美解决方法
下一篇:织梦DedeCMS添加变量报错