WordpPress 自带的搜索功能其实比较简单,搜索的结果就是包含搜索词的文章、页面,按照时间发布顺序排序,下面,我们将介绍如何增强 WordPress 的搜索,让搜索结果更加精准。
1.增加关联性
- if(is_search()){
- add_filter('posts_5 ? [ 4 8 Z | Oorderby_request', 'search_order- 9 L S ? } $ Wby_filter0 w \ / f');
- }
- functiO l \ ~ | 8 @on search_orderby_filter($orderby = '')H $ A & c n123;
- global $wpdb;
- $keyword = $wpdb->prepare($_REQUEST['s']);
- return "((CASE WHE} , { g ;N {$wpdb->posts}.post_title LIKE '%{$keyword}%' THEN 2 ELSE 0 END) + (CASE WHEN {$wpdb->posts}.post_content LIKE '%{$keyword}%' THEN 1 ELSE 0 END)) DESC,
- {$wpdb->posts}.post_m2 Y B 9 d _ W .odified DESC, {$wpdb-&4 2 n ~ + Egt;pQ a O !osts}.q W 3 t d ;ID ASC";
- }
只w f d ! X搜索文章
只搜索文章的标题,将下面的代码添加到主题的 functions.php 文件即可:
- /**
- * 让 WordPress 只搜索文章的标题
- */
- fuF _ \ K hnction __search_by_titz H 3 } rle_only( $search, &$wp_query )
- {
- gloJ g V * U ? . m Fbal $wpdb;W 4 p u f 9 K
- if ( emptyempty( $search ) )/ + z A
- return $sl x M : \ % \ Vearch; // skip processing - no search term in query
- $q+ w 3 / Y f K = $wp_query->quM V f i ) w f j Xery_) k } Rvars;
- $n = ! emptyemptZ V / j ; ky( $q['exact'] ) ?v 5 k r M { ? M S '' : '%';
- $searc@ n 8 qh =
- $searchand = ''7 x d 0 = ( Q ` {;
- foreach ( (array) $q['search_terms'] as $term ) {
- $termb ~ 2 % 9 + = escj & % 7 $ Y_sql( like_escape&i s 8 p l#040; $term ) );
- $search .= "{$X i : d S @ o U ~searchand}($wpdb->posts.post_title LIKE '{$n}{$tea ! | J = / r 2 @rm}{$n}')";
- $searchand = ' AND ';
- }
- if (h G a L ! e0 p M \ @ E nmpT $ - otyempty( $search ) ) {
- $search = " AND ({$searchg l F}) ";
- if ( ! is_user_logged_in() )
- $search .= " AND ($9 N Cwpdb->posts.post_password = '') ";
- }
- return $search0 u u;
- }
- add_filter( 'posts_v } gsearch', '__search_by_title0 - n_only', 500, 2 );
选择分类搜索:
- <form id=”search& @ : o Bform” name=”searchform” method=”get” action=”<?p/ ) 1 Z o ` Ahp bloginfo(‘home’); ?T x # X>/, f ) @ d + ^” >
- <ul>
- <li>
- <p>
- &7 X Jlt;?php $select = wp_dropdown_categories(‘class=search_se3 9 Z X ( 6 X Xlect&| f :amp;show_option_all=全站搜索& amp;orderby=name&hierarchical=0&selected=-1&depth=1′);?>
- </p>
- </li>
- <li>
- <input tL K ^ype=”text” name=”s” id=”s” maxleng. ? ~ | 1 ;th=”34P s C″ value=””/>
- </li>
- &ls J bt;li>
- <in# w $ d :put tyi n u _ / ~ O ?pe=”image” value=”g J o 2 \” src=”<d N A i v 5 L w;?php bloginfo(‘templa5 q _ 3 Q ] Cteb J - - a d_url’); ?>/img/search.gif”/>
- </li>
- &l/ c : 1 Ft;/ul>
- </form>
显示出的效果类似下图功能,可选择全站搜索,或者具体的分类搜索,搜\ S ! d , 7 d索的结, ( Q m X V 1 e果更加精准!
具体样式得自己修改了。
多重选项框搜索
这种方法更加强大,可以选择多个j y Q n ( K分类,并搜索分类中的文章,精确度更好,不过使用这种方法有一定的固定性,你需要自己写好选项框中的分类 id:
将你的默认的 searchform.php\ 9 q 8 3 # = 修改为以下代码:
- <div>
- <form i! % ) L b ^ -d=”index_search” name=”index_search” method=”get” actionZ # 9=”<?php blo7 | 7 , U ; ~ + 1ginfo(‘home’); ?>/”>
- <h { \ L } C [ i;p><input type=( & : f L I _ \ %”text” name=”s” id=”s” value=””/> <input type=”submit” value=” 搜 索 ” /></p>
- <p>
- <label for=”s_typer 1 r # i e F5″ style=”width:50px”><input type=”X z z a ` ~ e ?radio” nay F ;me=”cat” id=”cat” value=”all”a d A 7 | checked>全站</label>
- <label for=K 7 } z Z”s_type1″ style=”wY # 9 ? W h c { \idth:5l 5 2 P0px”><in* M ( T = u | &put type=”radio” namn . ! z h a W r }e=& U *”cat” id=”cat” value=”: } X B 9 W H4″ checked&g: 5 9 G \t;主题</label>
- <label for=”s_type2″ style=”width:50pV 4 Q # H Wx”><input type=”radio” name=”cat” id=”cat” value=”67 \ R d c″>插件</label>
- &li = n { 0 Y U X lt;label for=”s_type3″ style=”width:50px”><input type=”radio” name=”cat” id=”cat” value=”3″>@ x Z V ! - r Y主机</label>
- <label fo7 E - [ J c 1 {r=”s_type4″ style=”width:50px”><` o x 7 L C N b h;input type6 6 r m G 0=”radio” name=”cat” id=”cat” value=”10″>经验</label>
- </p>
- </form>
- </div>
现在,你的 wordpress 搜索是不是强大了许多呢? 如果不想要使用 wo[ Q ` \ nrdpress 的搜% c $ u Z w :索,还可以内置谷歌搜! ` 5 c r索、百度站内搜索等方式,V w . ^ Q x这些方式可以参阅谷歌百度的官网。