I plan on using a search widget that looks for all posts with a specific prefix in specific forums. Then I need to sort by title.
I can replace
PHP Code:
$criteria->set_sort('dateline', 'desc');
with
PHP Code:
$criteria->set_sort('title', 'asc');
but then need to remember to make the edit each time I upgrade.
Or I can possible rename searchwidget to searchwidget2 and find all the references to it.
Is there a cleaner way to do this?