検索フォームを表示するには、searchform.phpテーマファイルを使用します。
Display search form using searchform.php theme file.
get_search_formのテンプレートタグ使用方法
[php][/php]get_search_formのパラメーター
このタグには、パラメーターが全くありません。
This tag does not accept any parameters.
使用例
テーマでsearchform.phpが使われていなかったとき、Wordpressに検索する組み込みのフォームをレンダリングされます:
[php] [/php]When you don’t have searchform.php in your theme, WordPress will render its built-in search form:
もし、テーマの中にsearchform.phpがあったら、テンプレートをレンダリングします。検索フォームがあなたのブログのホームページにGETをしなければならないことを心にとめておいてください。入力テキストフィールドはsと呼ばれなければなりません、そして、あなたは上の例でのようなラベルを常にインクルードしなければなりません。searchform.phpをカスタムする例:
[php]If you do have searchform.php in your theme, it will render that template instead. Keep in mind that the search form should do a GET to the homepage of your blog. The input text field should be named s and you should always include a label like in the example above. Example of a custom searchform.php:
‘;
return $form;
}[/php]
[php][/php]
変更ログ
Since: 2.7.0
ソースファイル
get_search_form() is located in wp-includes/general-template.php.
関連テンプレートタグ
get_header, get_footer, get_sidebar, get_template_part, get_search_form, comments_template,
コメント