MENU

get_search_form

検索フォームを表示するには、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に検索する組み込みのフォームをレンダリングされます:

When you don’t have searchform.php in your theme, WordPress will render its built-in search form:

[php] [/php]

もし、テーマの中にsearchform.phpがあったら、テンプレートをレンダリングします。検索フォームがあなたのブログのホームページにGETをしなければならないことを心にとめておいてください。入力テキストフィールドはsと呼ばれなければなりません、そして、あなたは上の例でのようなラベルを常にインクルードしなければなりません。searchform.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:

[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,

Function Reference/get search form

よかったらシェアしてね!
  • URLをコピーしました!

この記事を書いた人

WordPress Love! 休日はほぼWordPress仲間と一緒に勉強会や写真を撮りに行っています。現在育児中のため、オフが多いです(>△<<<)

コメント

コメントする

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください

目次