让emlog同时搜索标题和内容
emlog默认的搜索功能只能搜索文章的标题,有些不方便。
我们可以改进一下,让它像wordpress那样,既能搜索文章标题,也能搜索文章的内容。
vi /emlog/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";
修改完毕,再搜索一下试试吧。