Sort children by menu order
-
I found this on the wp_list_pages template tag FAQ:
<?php $children = wp_list_pages('title_li=&child_of=&sort_column=menu_order'); if ($children) { ?> <ul> <?php echo $children; ?> </ul> <?php } ?>
I modified it to sort by menu_order, which works for any parent pages, but not for the children. Any help is appreciated.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Sort children by menu order’ is closed to new replies.