今天我給大家分享的是無縫整合google自定義搜索框的技巧。早在08年denis就寫過一篇整合google自定義搜索到wordpress中的教程,可以達到強化搜索、減輕數(shù)據(jù)庫讀取和賺取利潤的各種好處。其中的第6步是用google 的搜索框代替主題本身的搜索框,但是現(xiàn)在使用國外主題和付費主題的朋友越來越多了,這類主題都有一共同效果——界面ui棒!擁有精美搜索框的主題也不在少數(shù),如果讓你放棄原先精美的搜索框,而用 google 那簡單單一的搜索框是不是會有點不舍呢?
不用擔(dān)心,接下來 packy 教你一步步無縫整合google 自定義搜索框,可以在不修改原搜索框的前提下使用 google 強大的自定義搜索功能。
如果你是第一次整合google自定義搜索,可以按照我的步驟來;如果你對代碼較了解,可以根據(jù)你的需要選擇性的看。
第一步:注冊并獲取 google 自定義搜索代碼
整合 google 自定義搜索之前肯定必須要先讓 google 為你服務(wù),通過訪問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)建搜索結(jié)果頁
為了讓搜索結(jié)果在博客內(nèi)部顯示,我們需要在 wordpress 中創(chuàng)建一個新的頁面,用來顯示搜索的搜索結(jié)果。我們在本地新建一個文件,命名為 search.php,文件內(nèi)容復(fù)制下面的即可:
<?php
/*
template name: search
*/
?>
<?php get_header(); ?>
<div id=cse style=width: 100%;>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 href=http://www.google.com.hk/cse/style/look/shiny.css type=text/css />
<?php get_footer(); ?>
其中將“你的 google 自定義搜索 id”替換為 google 給你的“搜索引擎的唯一 id”,可以在控制面板的基本信息內(nèi)獲取。
保存后將 search.php 上傳至你的主題根目錄下。
最后在你博客的后臺 – 頁面中新建頁面,在頁面屬性的模版中找到 search 并選擇,寫好標(biāo)題發(fā)布即可。
第三步:修改當(dāng)前主題的搜索提交的表單
這里算是最關(guān)鍵的一步啦,就是當(dāng)用戶點擊你博客上任意頁面的站內(nèi)搜索按鈕的時候,將用戶引導(dǎo)到你剛剛創(chuàng)建的搜索結(jié)果頁上。這里我們需要在主題文件夾中找到搜索框所在的文件,每個主題都不同,我用我在使用的一款主題來演示吧,找到類似以下的代碼:
<form method=get action=/search?>
<input type=text size=24 name=s value=在wpzti.com中盡情搜索吧 class=textfield style=float:left onblur=if (this.value == ”) {this.value = ‘在wpzti.com中盡情搜索吧’;} onfocus=if (this.value != ”) {this.value = ”;}/?>
<input class=submitsearch type=submit value=search?>?</input?>
</form?>
其中我們需要修改的地方大致如下:
method=”get”
action=”/search”
還有文本框 name=”q”
*action 的地址可以根據(jù)你自己固定鏈接的方式來修改,只要保證能訪問到我們剛新建的頁面就行;不管你原先主題搜索框的 name 等于什么,都將引號內(nèi)的字母改成 q。
第四步:初始化搜索關(guān)鍵字
這是無縫整合 google 自定義搜索框的最后一步,完成他你就大功告成了哦。這一步我們要做的是:從 url 中提取瀏覽者搜索的關(guān)鍵詞,然后調(diào)用 google api 進行搜索。聽起來很復(fù)雜?無需理解,簡單的跟著做就可以了:
打開我們剛才新建的 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 自定義搜索帶來的好處。