emlog默认的搜索功能只能搜索文章的标题,但是又想它像wordpress那样,既能搜索文章标题,也能搜索文章的内容。
简单修改一下即可实现,修改方法:


打开/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";

 

改完后去试试效果吧~