Plugins & Hacks

How can I get search results displayed in date order?

Scenario:
"I want to make search results be random in order so that the same search query will bring up results in a different order."

Solution:
This requires a small core hack to BLOG.php.

Original forum thread (thanks, cyblot and duayen25!):
http://forum.nucleuscms.org/viewtopic.php?t=10909

Method:

  1. Find the function 'getSqlSearch' on lines 479 - 485 and you'll find the statement where the order is added to the search query.
  2. Replace line 482:
    $query .= ' ORDER BY score DESC';
    

    with

    $query .= ' ORDER BY i.itime DESC';
    
section: Plugins & Hacks | submitted by Leng on 2006.Feb.18 | 2475 views

item rate
Total votes: 1 - Rating: 9.00

Please tell us how useful this answer was to you (0 = useless, 10 = very very helpful):

10