Tagged Questions
0
votes
1answer
196 views
Sort get_children by menu_order
I'm using the jQuery Carousel Gallery and unfortunately it's not working with WP's new v3.5 gallery ordering. When the client drags to rearrange images, those changes are not reflected in the ...
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 ...