帝国CMS“上一篇”“下一篇”调用方法总汇
帝国默认的上一篇、下一篇链接比较单一,无法满足个性化,
一: 动态调用上一篇下一篇链接
<a href="[!--news.url--]e/public/GotoNext?classid=[!--classid--]&id=[!--id--]&enews=pre">上一篇</a> 动态调用上一篇链接
<a href="[!--news.url--]e/public/GotoNext?classid=[!--classid--]&id=[!--id--]&enews=next">下一篇</a> 动态调用下一篇链接
二: 运用灵动标签和SQl语句调用
用灵动标签调用上、下一篇链接,标题可截取字数,可自定义显示文字,或用图标代替:
上一篇链接:
[e:loop={"select id,classid,newspath,filename,groupid,titleurl from [!db.pre!]ecms_".$class_r[$navinfor[classid]]['tbname']." where id<".$navinfor[id]." and classid=".$navinfor[classid]." and checked=1 order by id desc limit 1",1,24,0}]
<?php
$titleurl=sys_ReturnBqTitleLink($bqr);
echo $titleurl;
[/e:loop]
下一篇链接:(把小于号改成大于号)
[e:loop={"select id,classid,newspath,filename,groupid,titleurl from [!db.pre!]ecms_".$class_r[$navinfor[classid]]['tbname']." where id>".$navinfor[id]." and classid=".$navinfor[classid]." and checked=1 order by id desc limit 1",1,24,0}]
<?php
$titleurl=sys_ReturnBqTitleLink($bqr);
echo $titleurl;
[/e:loop]
三: 运用灵动标签调用,比较简洁的方式(感谢 落木萧萧)
<!--上一篇-->
[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 "下一篇:很抱歉没有了";
}
?>
四: 控制上一篇下一篇标题字数截取30个字符为例
运用:<?=esub($bqr[title],30)?>
<!--上一篇-->
[e:loop={'selfinfo',1,0,0,'id<'.$navinfor[id].'','id desc'}]
上一篇:<a href="<?php
echo $bqsr[titleurl];
$pre='true';
?>"><?=esub($bqr[title],30)?></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';
?>"><?=esub($bqr[title],30)?>
</a>
[/e:loop]
<?php
if(empty($next)){
echo "下一篇:很抱歉没有了";
}
?>
调用图集上一组和下一组的标题图片:
方法如下:
上一组
[e:loop={'selfinfo',1,0,0,'id<'.$navinfor[id].'','id asc'}]
<a class="prev-ph" href="<?php
echo $bqsr[titleurl];
$next='true';
?>"><center><img alt="<?=$bqr[title]?>" src="<?=$bqr['titlepic']?>" /></center>
上一图组</a>
[/e:loop]
<?php
if(empty($next)){
echo '<a class="prev-ph" href=""><center><img alt="很抱歉没有了" src=""></center>
上一图组</a>';
}
?>
下一组
[e:loop={'selfinfo',1,0,0,'id>'.$navinfor[id].'','id desc'}]
<a class="prev-ph" href="<?php
echo $bqsr[titleurl];
$pre='true';
?>"><center><img alt="<?=$bqr[title]?>" src="<?=$bqr['titlepic']?>" /></center>
下一图组</a>
[/e:loop]
<?php
if(empty($pre)){
echo '<a class="prev-ph" href=""><center><img alt="很抱歉没有了" src=""></center>
下一图组</a>';
}
?>
-----------------------------------------------------------------------
补充:
第一种
上一篇:[e:loop={"select * from phome_ecms_book where shuji='$navinfor[shuji]' and id<$navinfor[id] order by id desc limit 1",0,24,0}]
<a href="<?php
echo $bqsr[titleurl];
$pre='true';
?>" target="_blank"><?=$bqr['title']?></a> <br>
[/e:loop]
<?php
if(empty($pre)){
echo "上一篇:很抱歉没有了";
}
?>
第二种
上一篇:
[e:loop={'book',1,18,0,"shuji='$navinfor[shuji]' and id<$navinfor[id]",'id DESC'}]
<a href="<?=$bqsr['titleurl']?>" target="_blank"><?=$bqr['title']?></a> <br>
[/e:loop]