Welcome to Delicate template
Header
Just another WordPress site
Header

帝国系统上一篇,下一篇解决方案

5月 27th, 2011 | Posted by 无 名 in ecms

给客户做网站要用到上一篇,下一篇,当没有下一篇时,为不可点击。
别看这些小细节,很多客户都会有这样的要求,碰到了几次。

解决方法如下:

<!--上一篇-->
[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 "下一篇:很抱歉没有了";
}
?>

更多自定义自定义综合解决方案进帝国论坛
http://bbs.phome.net/showthread-13-160831-0.html

You can follow any responses to this entry through the RSS 2.0 Both comments and pings are currently closed.