首页
软件
趣站
首页
软件
趣站
文章
文章
用户
版块
帖子
开启精彩搜索
热门搜索词
PDFelement
VMware
1'"
"
1'
招标文件制作
CA驱动
自动
投标文件制作
系统优化
koodo
通信
Edge
网站留念
Foxit
培训
admin
投标人知识
'
index
热门文章
Typing Word-网页在线背单词
Typing Word-网页在线背单词
7个月前
3712
CapCut 7.3.0剪映国际版中文版 – 视频剪辑
CapCut 7.3.0剪映国际版中文版 – 视频剪辑
7个月前
734
Adobe Acrobat Pro 2025.001.20432便携版— PDF编辑器
Adobe Acrobat Pro 2025.001.20432便携版— PDF编辑器
7个月前
492
IDM 6.42.52 绿色版 – 下载工具
IDM 6.42.52 绿色版 – 下载工具
7个月前
388
PixPin 2.1.8.0.beta 绿色版 – 截图/贴图工具
PixPin 2.1.8.0.beta 绿色版 – 截图/贴图工具
7个月前
385
Visual Studio Code 1.105.1 便携版 – 代码编辑器
Visual Studio Code 1.105.1 便携版 – 代码编辑器
7个月前
327
本站欢迎您~~~
在手机上浏览此页面
// 取消搜索词大小写区分 function zib_custom_search_case_insensitive($where) { global $wpdb; // 针对 MySQL 数据库(将搜索词和字段都转为小写匹配) if (strpos($where, "{$wpdb->posts}.post_title LIKE") !== false) { $where = preg_replace( "/({$wpdb->posts}.post_title LIKE ')%'/", "LOWER({$wpdb->posts}.post_title) LIKE LOWER('$1%')", $where ); } if (strpos($where, "{$wpdb->posts}.post_content LIKE") !== false) { $where = preg_replace( "/({$wpdb->posts}.post_content LIKE ')%'/", "LOWER({$wpdb->posts}.post_content) LIKE LOWER('$1%')", $where ); } return $where; } add_filter('posts_where', 'zib_custom_search_case_insensitive');