Multiple loop orderby
-
Hello, I have these arguments for my WP_Query. And it works perfectly. But What I need more from it, is so that I could be able to specific post to the top. For example post with id 128 should be first but also order by custom fields.
$args = array( 'post_type' => $type, 'post_status' => 'publish', 'posts_per_page' => $ppp, 'paged' => 1, 'meta_query' => array(array( 'key' => 'iki', 'compare' => '>=', 'value' => $today, )), 'orderby' => array( 'iki' => 'ASC', ), );
Could I add in orderby array additional parameter?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Multiple loop orderby’ is closed to new replies.