in wordpress我有一個查詢,它查詢特定的職位。WordPress的:陣列OUTPUT按順序
<div id="container-">
<?php
query_posts(array('post__in' => array(53,51,46,44,42,40,34,30,28)));
$divname=1;
while (have_posts()) : the_post();
?>
<div id="outdiv<?php echo $divname ?>">
<div id="div<?php echo $divname ?>">
<?php the_content();?>
</div>
</div>
<?php
$divname ++;
endwhile;
?>
</div>
我希望它輸出爲了我想要的職位是帖子53,51,46,44,42,40,34,30,28
因爲它輸出隨機,帖子中包含圖像和文字。 我的問題是,這可能嗎?或者是不是按照適當的順序給帖子<?php the_content()?>
?或HTML?請幫忙?
http://codex.wordpress.org/Function_Reference/query_posts – 2012-02-10 20:25:32
謝謝這可以幫助。 。 – tomexsans 2012-02-10 20:26:33