検索フォームのマークアップをHTML5に対応させる

get_search_form()をそのまま記述するとWordPressの古いバージョンでのマークアップとなってしまうため、最初に検索フォームのマークアップをHTML5に対応させる。functions.phpに記述する。

function neko_theme_setup(){
  add_theme_support( 'html5', array( 'search-form' ) );
}

add_theme_support( ‘html5’, array( ‘オプション’ ) )

【関数】add_theme_support( ‘html5’, array( ‘オプション’ ) )
マークアップにHTML5を使用する。オプションにはHTML5マークアップを使用する箇所を配列で指定する(指定できる箇所は、search-form、comment-list、comment-form、gallery、caption、style、script)。

inserted by FC2 system