zblog php单独调用置顶文章列表
调用zblog php置顶文章列表比较简单,通过GetList函数就可以轻易实现。GetList函数的详细介绍请看:
http://www.boke8.net/zblog-php-getlist.html
具体的zblog php调用置顶文章的代码:
1 2 3 4 5 6 | {$topArray = GetList(10, null, null, null, null, null, array("only_ontop" => true));}<ul>{foreach $topArray as $top} <li><a href="{$top.Url}" title="{$top.Title}" target="_blank">{$top.Title}</a></li>{/foreach}</ul> |
其中GetList后面括号里的第一个 10 是要调用的置顶文章数量。
本文链接:https://h.finchui.com/zblogcn/1392.html 转载需授权!