灰儿 发表于 2016-9-21 10:41:31

phpcms v9 调用文章列表



效果:


代码:

<div class="mar-t-5">
<div class="w-314 f-l ov">
<div class="pic-summary">
{pc:contentaction="lists" catid="38" order="id DESC LIMIT 0,1--" num="1"}
{loop $data $r}
<p class="title"><a href="{$r['url']}" title="{$r['title']}" target="_blank">{str_cut($r['title'], 60, '')}</a></p>
<p class="summary">{str_cut($r,78,'..')}<a href="{$r['url']}" title="{$r['title']}" target="_blank">[详细]</a></p>
{/loop}
{/pc}
</div>
<ul class="txt-list ov lh-26">
{pc:contentaction="lists" catid="38" order="id DESC LIMIT 1,7--" num="7"}
{loop $data $r}
<li><em class="ico"></em><a href="{$r['url']}" title="{$r['title']}" target="_blank">{str_cut($r['title'], 60, '')}</a></li>
{/loop}
{/pc}
</ul>
</div>
<div class="w-313 f-r ov">
<ul class="txt-list lh-26">
{pc:contentaction="lists" catid="38" order="id DESC LIMIT 8,10--" num="10"}
{loop $data $r}
<li><em class="ico"></em><a href="{$r['url']}" title="{$r['title']}" target="_blank">{str_cut($r['title'], 60, '')}</a></li>
{/loop}
{/pc}
</ul>
</div>
</div>


页: [1]
查看完整版本: phpcms v9 调用文章列表