* WordPress 検索フォーム [#cf4231d1]
** my_search_form()を上書き修正する [#z40ef26a]
themes/foo/functions.phpを開き、以下のコードを記述する。
function my_search_form( $form ) {
$form = '<form role="search" method="get" id="searchform" class="searchform" action="' . 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>';
return $form;
}
add_filter( 'get_search_form', 'my_search_form' );
** 参考 [#hc1a075f]
http://codex.wordpress.org/Function_Reference/get_search_form