Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save rajeshsingh520/a520513a96a386941ea5c0295507ba91 to your computer and use it in GitHub Desktop.

Select an option

Save rajeshsingh520/a520513a96a386941ea5c0295507ba91 to your computer and use it in GitHub Desktop.
order pickup location by name
add_filter('pisol_dtt_get_location', function($arg){
$arg['orderby'] = 'title';
$arg['order'] = 'ASC'; // ASC or DESC
return $arg;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment