【解決】WPエラー:Declaration of description_walker::start_el(&$output, $item, $depth, $args) should be compatible with・・・

エラー

PHPのバージョンを変えた時、Declaration of description_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) in … というエラーがでることがあります。

WPのデバッグファイルで指定されたファイルを開き、指定の行をみてください。

start_el(&$output, $item, $depth, $args)

たとえば、こんな記述になっていたら、エラーメッセージに合わせて()を修正しましょう。

start_el(&$output, $data_object, $depth = 0, $args = NULL, $current_object_id = 0)

やってみて。

すると、$itemが消えたために、別のエラーになることがあります。その場合には、$itemの部分を、$data_objectに書き換えてください。

やってみて。

The following two tabs change content below.
パーソナルビジネスブレインズ・グループ代表。マーケティング支援事業(アタマーケ・ラボ)、起業支援事業(起業18フォーラム)など、多数の事業を展開中です。
About 新井 一
パーソナルビジネスブレインズ・グループ代表。マーケティング支援事業(アタマーケ・ラボ)、起業支援事業(起業18フォーラム)など、多数の事業を展開中です。