Skip to content

Instantly share code, notes, and snippets.

@alessandrotesoro
Created July 28, 2015 13:05
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 alessandrotesoro/276f403c8ada52c87be3 to your computer and use it in GitHub Desktop.
Save alessandrotesoro/276f403c8ada52c87be3 to your computer and use it in GitHub Desktop.
function wprm_change_items_order( $args ) {
$args['orderby'] = 'date';
$args['order'] = 'DESC';
return $args;
}
add_filter( 'wprm_menu_category_args', 'wprm_change_items_order' );
add_filter( 'wprm_full_menu_args', 'wprm_change_items_order' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment