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')); ?>
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')); ?>
You must be logged in to post a comment.
It should look like this:
<?php
$pages = get_pages( array('sort_column' => 'menu_order') );
?>