首页
软件
趣站
浏览器插件
首页
软件
趣站
浏览器插件
FastStone Image Viewer
共1篇
排序
更新
浏览
点赞
评论
FastStone Image Viewer 8.0 便携版 – 图片浏览器
FastStone Image Viewer 是一款功能全面且用户友好的图像查看和编辑工具,支持多种图像格式,提供高效的管理体验。
软件
itdog
6个月前
0
78
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');