帝国CMS7.5自定义列表根据当前关键词调用相关阅读的方法,使用方法:建立自定义列表,自定义列表模板用的是列表的模板自己新建立一份就行了,然后下面的代码主要是用作调用根据自动以列表填写的一个关键来调用数据用的。并非所有都适用,亲测过没有任何问题。
<?php
$pageid=str_replace("list","",$classid);
$cr2=$empire->fetch1("select pagekeywords from phome_enewsuserlist where listid= '".$GLOBALS[navclassid]." limit 1'");
$dcm=$cr2['pagekeywords'];
$ecms_bq_sql=sys_ReturnEcmsLoopBq("select * from phome_ecms_news where classid >434 and title like '%".$dcm."%' order by newstime limit 10",14,24,0);
while($bqr=$empire->fetch($ecms_bq_sql))
{
?>
<div class="proclass_nav"><a href="<?=$bqr['titleurl']?>" title="<?=$bqr['title']?>"><?=$bqr['title']?></a></div>
<?php
}
?>