WP博客無縫整合Google自定義搜索框

字號:


    今天我給大家分享的是無縫整合Google自定義搜索框的技巧。早在08年Denis就寫過一篇整合Google自定義搜索到WordPress中的教程,可以達到強化搜索、減輕數(shù)據(jù)庫讀取和賺取利潤的各種好處。其中的第6步是用Google 的搜索框代替主題本身的搜索框,但是現(xiàn)在使用國外主題和付費主題的朋友越來越多了,這類主題都有一共同效果——界面UI棒!擁有精美搜索框的主題也不在少數(shù),如果讓你放棄原先精美的搜索框,而用 Google 那簡單單一的搜索框是不是會有點不舍呢?
    不用擔心,接下來 Packy 教你一步步無縫整合Google 自定義搜索框,可以在不修改原搜索框的前提下使用 Google 強大的自定義搜索功能。
    如果你是第一次整合Google自定義搜索,可以按照我的步驟來;如果你對代碼較了解,可以根據(jù)你的需要選擇性的看。
    第一步:注冊并獲取 Google 自定義搜索代碼
    整合 Google 自定義搜索之前肯定必須要先讓 Google 為你服務,通過訪問http://www.google.com/cse/ 創(chuàng)建你的搜索引擎。創(chuàng)建完畢后進入“外觀”面板,選擇“全寬”的布局模式。保存后進入“獲取代碼”,獲得你的 Google 自定義搜索代碼:
    <!-- Put the following javascript before the closing </head> tag. -->
    <script>
    (function() {
    var cx = '015818537936328944739:nkbsvpppu5k';
    var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true;
    gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
    '//www.google.com/cse/cse.js?cx=' + cx;
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s);
    })();
    </script>
    <!-- Place this tag where you want both of the search box and the search results to render -->
    <gcse:search></gcse:search>
    先保留著這些代碼,不用理他,繼續(xù)第二步
    第二步:創(chuàng)建搜索結果頁
    為了讓搜索結果在博客內部顯示,我們需要在 WordPress 中創(chuàng)建一個新的頁面,用來顯示搜索的搜索結果。我們在本地新建一個文件,命名為 search.php,文件內容復制下面的即可:
    <?php
    /*
    Template Name: search
    */
    ?>
    <?php get_header(); ?>
    <div id="cse">Loading</div>
    <script src="http://www.google.com.hk/jsapi" type="text/javascript"></script>
    <script type="text/javascript">
    google.load('search', '1', {language : 'zh-CN'});
    google.setOnLoadCallback(function(){
    var customSearchControl = new google.search.CustomSearchControl('你的Google自定義搜索ID');
    customSearchControl.setResultSetSize(google.search.Search.FILTERED_CSE_RESULTSET);
    customSearchControl.draw('cse');
    });
    </script>
    <link rel="stylesheet" type="text/css" />
    <?php get_footer(); ?>
    其中將“你的 Google 自定義搜索 ID”替換為 Google 給你的“搜索引擎的唯一 ID”,可以在控制面板的基本信息內獲取。
    保存后將 search.php 上傳至你的主題根目錄下。
    最后在你博客的后臺 – 頁面中新建頁面,在頁面屬性的模版中找到 search 并選擇,寫好標題發(fā)布即可。
    第三步:修改當前主題的搜索提交的表單
    這里算是最關鍵的一步啦,就是當用戶點擊你博客上任意頁面的站內搜索按鈕的時候,將用戶引導到你剛剛創(chuàng)建的搜索結果頁上。這里我們需要在主題文件夾中找到搜索框所在的文件,每個主題都不同,我用我在使用的一款主題來演示吧,找到類似以下的代碼:
    <form method="get" action="/search"?>
    <input type="text" size="24" name="s" value="在wpzti.com中盡情搜索吧" onblur="if (this.value == ”) {this.value = ‘在wpzti.com中盡情搜索吧’;}" onfocus="if (this.value != ”) {this.value = ”;}"/?>
    <input type="submit" value="Search"?>?</input?>
    </form?>
    其中我們需要修改的地方大致如下:
    method=”get”
    action=”/search”
    還有文本框 name=”q”
    *action 的地址可以根據(jù)你自己固定鏈接的方式來修改,只要保證能訪問到我們剛新建的頁面就行;不管你原先主題搜索框的 name 等于什么,都將引號內的字母改成 q。
    第四步:初始化搜索關鍵字
    這是無縫整合 Google 自定義搜索框的最后一步,完成他你就大功告成了哦。這一步我們要做的是:從 URL 中提取瀏覽者搜索的關鍵詞,然后調用 Google API 進行搜索。聽起來很復雜?無需理解,簡單的跟著做就可以了:
    打開我們剛才新建的 search.php,在 Google 的代碼
    customSearchControl.draw(‘cse’, options);
    后插入以下代碼:
    var match = location.search.match(/q=([^&]*)(&|$)/);
    if(match && match[1]){
    var search = decodeURIComponent(match[1]);
    customSearchControl.execute(search);
    }
    大功告成啦,從此以后你依舊可以使用主題原始的搜索框而享受 Google 自定義搜索帶來的好處。