I’m using this bit of code to generate a page full of items but they won’t sort into the menu order, any ideas as to why?

   <?php $pages = get_pages(array('child_of', 'menu_order')); ?> 

1 Answer
1

It should look like this:

<?php
$pages = get_pages( array('sort_column' => 'menu_order') );
?>

Leave a Reply

Your email address will not be published. Required fields are marked *