Ok thanks, I will look into that. But before I do I still have a question. I see this code:
function tribe_wootickets_custom_sort($p, $q) {
if ($p->price < $q->price) return -1;
if ($p->price > $q->price) return 1;
return 0;
}
If I want to sort by publish date what code word do I need to use instead of the word ‘price’ above?
And if I turn around the < and the > sign the sorting order gets turned around right?