zblog php调用指定单个栏目内容或者多个栏目列表方法
一、获取单个自定义分类的文章列表
{foreach GetList(5,$flid) as $article}
{$article.Title}
{/foreach}
这样显示出来是标题列表
{foreach GetList(5,$flid) as $article}
{template:post-multi-index}
{/foreach}
这样显示出来是带图带摘要列表,模板大家自己可以研究下
二、获取多个自定义分类的文章列表,循环输出
{php}$flids = explode(',','1,2,3,4,5');{/php}
{foreach $flids as $flid}
{foreach GetList(5,$flid) as $article} {$article.Title}
{/foreach}{/foreach}
同理可以切换成:
{php}$flids = explode(',','1,2,3,4,5');{/php}
{foreach $flids as $flid}
{foreach GetList(5,$flid) as $article}
{template:post-multi-index}
{/foreach}{/foreach}
其中:1,2,3,4,5为分类ID
本文链接:https://h.finchui.com/zblogcn/40.html 转载需授权!