phpcms v9调用多个栏目下文章的方法

时间:2022-10-22 13:26:02

示例:
{pc:get sql="SELECT * from v9_news where status=99 and catid in(6,7,8) order by id DESC" num="10" return="data"}
{loop $data $r}
<a href="{$r[url]}">{$r[title]}</a>
{/loop}
{/pc}
解析:
在使用过程中请将表前缀v9_修改为你自己的表前缀,本示例为从v9_news表调用数据,如果你要调用的表不是此表,请修改为你要调用的表
status=99审核通过
catid in(6,7,8)其中6,7,8为要调用栏目的ID
DESC为降序排列,ASC为升序排序
num="10"其中10为调用数量