需求:使用zblog建站,官方的编辑器里有设置文章置顶类别(无,分类,首页,全局),至于模板里只有一个判断是否是置顶文章,并且我的模板里需要循环两次,如果使用单独模板的方式需要分出去几个模板,只能另寻办法,使用GetList函数最后得到想要的结果。
主要注意在首页GetList的第二个参数null即可,在栏目页就要获取到栏目当前的ID了;
使用自定义查询参数where_custom,查询log_IsTop得到相应置顶类别的值(0,1,2,4)从而正确获取需求的列表。具体代码说明如下图:
完整的代码贴出:
{$topArray = GetList(3, $category->ID, null, null, null, null, array('where_custom' => array(array('=', 'log_IsTop', 4))));}
{if $topArray}
<section id="cateSlideBox" class="txtScroll-left">
<div class="hd">
<a class="next"></a>
<ul class="num">
{foreach $topArray as $key=>$top}<li>{$key+1}</li>{/foreach}
</ul>
<a class="prev"></a>
</div>
<div class="bd">
<ul class="infoList">
{foreach $topArray as $top}
<li>
<a href="{$top.Url}" target="_blank" title="{$top.Title}">{getDes($top->Title,20)}</a>
<!--span>{$top->Time('UpdateTime','m-d')}</span-->
</li>
{/foreach}
</ul>
</div>
</section>
{/if}