剛才又完成了一個zblog模板的修改,其中牽涉到了在首頁某區僅調取置頂文章,并且要限制最大調取數量!
1、zblogPHP調取全部置頂文章:
{foreach $articles as $article} {if $article.IsTop} {template:blog-istop} {/if} {/foreach}
注:這是在首頁調取全部置頂文章的默認代碼,其中{template:blog-istop}是置頂文章模板,注意不要與列表置頂文章模板重復了,除非你需要一模一樣。
2、zblogPHP調取指定數量的置頂文章代碼
{$topArray = GetList(2, null, null, null, null, null, array("only_ontop" => true));} {foreach $topArray as $article} {template:post-istop} {/foreach}
其中2就是調取最新2條最新的置頂文章,注意是最新發布的置頂文章!