zblogphp单独调用最近更新的文章是可以使用getlist函数来解决,也可以使用getarticlelist函数来解决。
下面代码是使用getarticlelist函数来解决的,具体请看:
{$updates = $zbp->getarticlelist('*', array(array('=', 'log_type', 0), array('=', 'log_status', 0)), array('log_posttime' => 'desc'), 10, null,false);}
-
{foreach $updates as $article}
- {$article.title} {/foreach}
getarticlelist函数里面倒数第三个参数10为数量,需要调用多少篇最近更新的文章就写多少。