Custom Post Type 'orderby'=> menu_order
-
Wondering why this works:
<?php $my_query = new WP_Query( array( ‘post_type’ => ‘portfolio’, ‘posts_per_page’ => 4, ‘orderby’=> menu_order) ); ?>
But this does not:
<?php $my_query = new WP_Query( array( ‘post_type’ => ‘portfolio’, ‘posts_per_page’ => 4) ); ?>
Do I need to use orderby? Is there any documentation on this?
Thanks!
The topic ‘Custom Post Type 'orderby'=> menu_order’ is closed to new replies.