Wordpress:ForEach循环外主页上的最新帖子?

时间:2017-04-07 21:43:35

标签: php wordpress foreach

我是Wordpress的新手,我无法在主页上显示最近的帖子,而不是在ForEach循环中。我正在创建一个站点,在块布局中显示主页上的最新帖子(请参见静态页面的屏幕截图:http://prntscr.com/etriud),除了其中一个块有意地比其他块大,这就是ForEach循环的原因不会工作。

有没有办法在页面上显示ForEach循环之外的最新帖子?提前谢谢!

1 个答案:

答案 0 :(得分:0)

如果没有看到您的代码,就很难具体了。如果您知道要以不同于其他图像的方式显示第一张图像,则仍可以使用foreach构造。

$posts = array();
$i=0; // start the counter at zero
foreach ($posts as $post) {
    $i++; // increment the counter on each loop...
    if ($i == 1) {
        // do something different with the first post..
    } else {
        // do your normal stuff...
    }
}