[WordpPress] 使用內建的 search form
WordPress 內建有提供站內的搜尋表單,提供站內的文章搜尋功能,在版型開發時,我們只需要調用 get_search_form()
的 function ,就可以直接使用內建的搜尋功能嘍:
只要在你想加入的 template.php
裡加入 get_search_form()
的 function 就可以了:
<?php get_search_form()?>
如圖示:
另外如果你想要自訂 search_form 的 Html 的架構了話,直接在版型根目錄地下,新增一個 searchform.php
的檔案,裡面的內容如下:
<form id="searchform" method="get" action="/index.php">
<div>
<input type="text" name="s" id="s" size="15" /><br />
<input type="submit" value="Search" />
</div>
</form>
就可以來客製 search_form
的架構嘍~
WordPress 官方文件:get_search_form()
WordPress 官方文件:The Search Form