EMLOG搜索功能如何做到标题+全文的模糊搜索?

2015年05月21日 技术资料 3291 views 0

EMLOG搜索功能如何做到标题+全文的模糊搜索? 第1张

很简单,首先找到文件

/include/controller/search_controller.php


搜索

$sqlSegment = "and title like '%{$keyword}%' order by date desc"; 


替换成
$sqlSegment = "and ( title like '%{$keyword}%' or content like '%{$keyword}%' ) order by date desc"; 

👍好活当赏🧧