DEDECMS default search function, the results obtained are sorted according to the order in which the articles are added. Many times, we hope to get the results sorted by the number of clicks, with those with more clicks ranked first.
Then modify this place:
##include/inc_arcsaerch_view.php on line 48
$this->OrderBy = 'dede_full_search.aid desc';
$this->OrderBy = 'dede_full_search.click desc';
The above is the detailed content of Method to implement dedecms search results page sorting by click. For more information, please follow other related articles on the PHP Chinese website!