Notice: 関数 register_sidebar が誤って呼び出されました。
function.php等エラーが出ている「register_sidebar」箇所にてIDを追加します。数値のところは上から順番に割り当てていきます。
・修正前
register_sidebar(array(
'name' => 'ヘッダー',
~ 略 ~
));
・修正後
register_sidebar(array(
'id'=>'sidebar-数値',
'name' => 'ヘッダー',
~ 略 ~
));
Warning: Declaration of My_Walker::start_el(&$output, $item, $depth, $args) should be compatible with Walker_Nav_Menu::start_el(&$output, $data_object, $depth = 0, $args = NULL, $current_object_id = 0)
警告メッセージのままですがそのように修正します。。
・修正前
function start_el(&$output, $data_object, $depth, $args) {
~ 略 ~
}
・修正後
function start_el(&$output, $data_object, $depth = 0, $args = NULL, $current_object_id = 0) {
~ 略 ~
}