We can order pages by title.
Also we can sort them by menu_order.
Is it possible, to order pages by menu_order and title at the same time?
We can order pages by title.
Also we can sort them by menu_order.
Is it possible, to order pages by menu_order and title at the same time?
You must be logged in to post a comment.
Use
'orderby' => 'title menu_order'
or&orderby=title menu_order
(depending of the syntax you use for your query parameters).I don’t yet have enough rep to comment so I will have to post this tidbit as an answer instead.
Since WP 4.0, you may compound any of the available
orderby
values by padding them as a space-delimited list.This is somewhat documented here
In answer to your question, you may use
'orderby' => 'menu_order title'