在 WordPress 裡只要加上 get_search_form() 就可以在頁面上增加搜尋網站的欄位。
完整的參數如下:
get_search_form( array $args = array() )
可帶入的參數:
$args
(array) (Optional) Array of display arguments.
- 'echo'
(bool) Whether to echo or return the form. Default true. - 'aria_label'
(string) ARIA label for the search form. Useful to distinguish multiple search forms on the same page and improve accessibility.
產出後就可以依據結構調整 UI 了。