我有一个php函数,可以打印最后三篇文章的标题和摘录。
第一篇文章没有摘录。
代码如下:
$posts = wp_get_recent_posts( array(\'numberposts\' => 3, \'post_status\' => \'publish\') );
foreach ($posts as $post)
{
setup_postdata($post);
echo "<h2 style=\'font-size:18px\'>".$post[\'post_title\']."</h2>";
if($post[\'post_excerpt\'])
echo $post[\'post_excerpt\']." <a href=\'".get_permalink($post[\'ID\'])."\' style=\'font-size: 17px;\'><b>Continue...</b></a>";
else echo \'no excerpt\';
echo "<br><br />";
}
我想展示第一篇文章的摘录(最后一篇文章)。我的代码有什么问题?为什么第一次印刷后它不起作用?