How do I sort posts by post__in ?
-
I want to retrieve a custom set of pages and sort them manually (in the post__in order)
my code is:
query_posts(array( 'post__in'=>array('16','20','22'), 'post_type'=>'page', 'order' => 'post__in' )); if ( have_posts() ) while ( have_posts() ) : the_post(); the_title(); endwhile;But the output is the titles ordered by date.
I am using the'order' => 'post__in'as used in this article.
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘How do I sort posts by post__in ?’ is closed to new replies.