我想在我的主页中显示“商业”类别的前6个帖子,如下所示。 [Please take a look at the image]
是否可以在'for'循环中查询帖子?
答案 0 :(得分:0)
你当然可以这样做。但是,如果首先将它们存储在某个数组变量中,然后将其放置到您想要的任何复杂网格中,将会更容易。
F.e。
<?php
$business=get_posts("cat=222&posts_per_page=6");
//now put it anywhere you want
?>
<div><?php echo $business[0]->post_title; ?> </div>
...
<div><?php echo $business[5]->post_title; ?> </div>