Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created May 24, 2012 02:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/2779046 to your computer and use it in GitHub Desktop.
Save billerickson/2779046 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'be_subpages_widget_args', 'be_subpages_menu_order' );
/**
* Subpages Widget - Sort by Menu Order
*
* @param array $args
* @return array
*/
function be_subpages_menu_order( $args ) {
$args['sort_column'] = 'menu_order';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment