Skip to content
Advertisement

How to get posts order by menu_order in WordPress using $wpdb->get_results()?

I have the following function where I build out my own parent-child navigation.

The issue I’m facing is I have not been able to order the children by menu_order ( so order by the Order attribute that can be set with each page when re-ordered ). Any tips on how to do so would be greatly appreciated.

JavaScript

Advertisement

Answer

You need to pass ORDER BY {$wpdb->posts}.menu_order ASC to your query. check the below code.

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement