首页
软件
趣站
首页
软件
趣站
Complete Internet Repair
共1篇
排序
更新
浏览
点赞
评论
Complete Internet Repair 11.1.3.6518- 网络故障修复工具
软件
itdog
7个月前
0
41
0
本站欢迎您~~~
在手机上浏览此页面
// 取消搜索词大小写区分 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');