Tagged Questions
3
votes
3answers
2k views
get_children() Not Working with orderby Parameter
I am trying to use the orderby parameter in the get_children function as below:
$navigation = get_children(array(
'post_parent' => $parent->ID,
'orderby' => 'menu_order'
));
But it is ...