Advertisement
BakerMan

WT alphabetical ticket sort

Sep 6th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. // This function would go in the theme's functions.php file
  2. // (or another suitable location) and will sort tickets by
  3. // name, alphabetically
  4. function tribe_wooticket_custom_sort($p, $q) {
  5.     if ($p->name < $q->name) return -1;
  6.     if ($p->name > $q->name) return 1;
  7.     return 0;
  8. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement