我在Wordpress中使用4x4网格布局做主题。我打算让第四个区块(第1列,第4行)显示广告。这可以在后循环中完成吗?第4个块不是post类型,它将是和自定义html div块。
答案 0 :(得分:1)
这将循环播放您的帖子,每隔4次迭代,它就会在帖子前显示广告
$count = 1;
while (have_posts()) {
if ($count % 4 > 0) {
the_post();
} else {
//display the ad
//put your ad code here
//then start a new row in your grid and display the post
the_post();
}
$count++;
}