很多人都在使用帝國(guó)cms,其中在帝國(guó)cms內(nèi)容頁(yè)里會(huì)受到上一篇和下一篇這個(gè)問(wèn)題困擾,今天我們就來(lái)解決下這個(gè)問(wèn)題:
1、帝國(guó)CMS自帶模板變量:
上一篇:[!–info.pre–]
下一篇:[!–info.next–]
缺點(diǎn):[!–info.pre–] 和 [!–info.next–] 中封裝的 <a>標(biāo)簽的內(nèi)容無(wú)法定制
2、靈動(dòng)標(biāo)簽+SQL語(yǔ)句
[e:loop={"select * from [!db.pre!]ecms_news where id<'$navinfor[id]' and classid='$navinfor[classid]' order by id desc limit 1",1,24,0}]
上一篇:<a href="<?=$bqsr[titleurl]?>" title="上一篇:<?=$bqr[title]?>" target="_blank"> ☜ </a>
[/e:loop]
[e:loop={"select * from [!db.pre!]ecms_news where id>'$navinfor[id]' and classid='$navinfor[classid]' order by id limit 1",1,24,0}]
下一篇:<a href="<?=$bqsr[titleurl]?>" title="下一篇<?=$bqr[title]?>" target="_blank">☞</a>
[/e:loop]
3、純靈動(dòng)標(biāo)簽
[e:loop={'selfinfo',1,0,0,'id<'.$navinfor[id].'','id desc'}]
<a href="<?php
echo $bqsr[titleurl];
$pre='true';
?>">上一篇:<?=$bqr[title]?>
</a>
[/e:loop]
<?php
if(empty($pre)){
echo "上一篇:很抱歉沒有了";
}
?>
[e:loop={'selfinfo',1,0,0,'id>'.$navinfor[id].'','id asc'}]
<a href="<?php
echo $bqsr[titleurl];
$next='true';
?>">下一篇:<?=$bqr[title]?>
</a>
[/e:loop]
<?php
if(empty($next)){
echo "下一篇:很抱歉沒有了";
}
?>
4、動(dòng)態(tài)調(diào)用
<a href="/e/public/GotoNext?classid=[!–self.classid–]&id=[!–id–]&enews=pre">上一篇文章</a>
<a href="/e/public/GotoNext?classid=[!–self.classid–]&id=[!–id–]&enews=next">下一篇文章</a>