I have the following code:
$collection = Mage::getSingleton('catalogsearch/layer')->getProductCollection();
I've tried
$collection = Mage::getSingleton('catalogsearch/layer')->getProductCollection()->addAttributeToSort('relevance', 'desc')
But it does not work.
Any ideas?