本文最后更新于2017年9月23日,已超过 3 个月没有更新,如果文章内容或图片资源失效或与实际不符,请留言反馈,我们会及时处理,谢谢!

这是示范页面。页面和博客文章不同,它的位置是固定的,通常会在站点导航栏显示。很多用户都创建一个“关于”页面,向访客介绍自己。例如:

欢迎!我白天是个邮递员,晚上就是个有抱负的演员。这是我的博客。我住在天朝的帝都,有条叫做Jack的狗。

……或这个:

XYZ Doohickey公司成立于1971年,自从建立以来,我们一直向社会贡献着优秀doohickies。我们的公司总部位于天朝魔都,有着超过两千名员工,对魔都政府税收有着巨大贡献。

而您,作为一个WordPress用户,我们建议您访问控制板,删除本页面,然后添加您自己的页面。祝您使用愉快!

// 取消搜索词大小写区分 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');