91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

WordPress中如何獲取搜索表單

發布時間:2021-08-31 11:01:28 來源:億速云 閱讀:114 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關WordPress中如何獲取搜索表單,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

get_search_form 函數在 WordPress 中是用來提取預設的搜索表單或者默認的搜索表單的。因為官方這個函數沒有中文的,所以我就簡單寫了一下。

描述
get_search_form 函數在 WordPress 中是用來提取自定義搜索表單或者默認的搜索表單的。
顯示自定義表單還是顯示默認表單,完全取決于您的主題中是否有search.php文件,
如果有該文件,則自動調用該文件,如果沒有則顯示默認的搜索表單。

使用

<?php
  get_search_form($echo = true) 
?>

參數
$echo 布爾型,用來選擇顯示還是返回變量。
默認值:true

實例
沒你想象的復雜,其實就是這么簡單。

<?php
  get_search_form(); 
?>

這里提一下,如果你需要整合谷歌自定義搜索那些的話,
你只要在你的search.php 文件中將自定義的部分代碼放入即可嘍,當然你需要設定樣式。

函數源代碼

<?php
 /**
 * Display search form.
 *
 * Will first attempt to locate the searchform.php file in either the child or
 * the parent, then load it. If it doesn't exist, then the default search form
 * will be displayed. The default search form is HTML, which will be displayed.
 * There is a filter applied to the search form HTML in order to edit or replace
 * it. The filter is 'get_search_form'.
 *
 * This function is primarily used by themes which want to hardcode the search
 * form into the sidebar and also by the search widget in WordPress.
 *
 * There is also an action that is called whenever the function is run called,
 * 'get_search_form'. This can be useful for outputting JavaScript that the
 * search relies on or various formatting that applies to the beginning of the
 * search. To give a few examples of what it can be used for.
 *
 * @since 2.7.0
 * @param boolean $echo Default to echo and not return the form.
 */
function get_search_form($echo = true) {
 do_action( 'get_search_form' );
 
 $search_form_template = locate_template('searchform.php');
 if ( '' != $search_form_template ) {
 require($search_form_template);
 return;
 }
 
 $form = '<form role="search" method="get" id="searchform" action="' . esc_url( home_url( '/' ) ) . '" >
 <div><label class="screen-reader-text" for="s">' . __('Search for:') . '</label>
 <input type="text" value="' . get_search_query() . '" name="s" id="s" />
 <input type="submit" id="searchsubmit" value="'. esc_attr__('Search') .'" />
 </div>
 </form>';
 
 if ( $echo )
 echo apply_filters('get_search_form', $form);
 else
 return apply_filters('get_search_form', $form);
}
?>

關于“WordPress中如何獲取搜索表單”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南宫市| 康乐县| 尤溪县| 吴川市| 遂川县| 尖扎县| 桃园市| 汶川县| 虎林市| 安康市| 砀山县| 太原市| 聊城市| 惠安县| 隆德县| 绩溪县| 浦县| 平遥县| 云阳县| 泰顺县| 桂平市| 林芝县| 金昌市| 鄂伦春自治旗| 永定县| 博白县| 祁连县| 镇雄县| 绥阳县| 雷山县| 镇平县| 平和县| 阿鲁科尔沁旗| 柘城县| 古田县| 城市| 楚雄市| 镇江市| 青龙| 汝州市| 保定市|