query_posts custom order
-
hi!
i have an automatic generated array of posts ids. To retrive posts im using query_posts but i want, to get at output posts ordered as the ids. eg.`$arr=array(1,9,7,23,8,11);
$args = array(
‘post__in’ => $arr,
‘posts_per_page’ => 7,
‘order’
);
query_posts($args);`
but shows display in numerical order,this is 1,7,8,9,11,23.
Is there a way to display them in way i want?
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘query_posts custom order’ is closed to new replies.