2012-02-10 43 views
1

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?請幫忙?

+1

http://codex.wordpress.org/Function_Reference/query_posts – 2012-02-10 20:25:32

+0

謝謝這可以幫助。 。 – tomexsans 2012-02-10 20:26:33

回答

0
query_posts(array('post__in' => array(53,51,46,44,42,40,34,30,28), 
        'orderby' => 'ID', 
        'order' => 'DESC')); 

MySQL不關心查詢的IN語句中元素的順序。

+0

謝謝你我會試試這個 – tomexsans 2012-02-10 20:31:11

+0

謝謝你的工作,我改變了一些它,但它工作正常。 – tomexsans 2012-02-10 20:44:54