How to sort POSTS from 2 Categories in ASC or DSCE?
-
I am trying to sort posts which i am getting from 2 categories. I searched alot on the internet but i didn’t find any solution. Can anyone help me how to do that? At the moment i am using this code here.
<?php
query_posts( ‘cat=-1,-2′.’posts_per_page=10′.’&order=ASC’ );
while ( have_posts() ) : the_post();
the_title();
endwhile;
wp_reset_query();
?>
Please i really need help. Thankyou.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to sort POSTS from 2 Categories in ASC or DSCE?’ is closed to new replies.