当サイトはアフィリエイト広告を利用しています。
古いWPテーマでphp5系から7へ変更してヘッダー部分にエラーが…



スポンサーリンク
Warning: Declaration of description_walker::start_el(&$output, $item, $depth, $args) should be compatible with Walker_Nav_Menu::start_el(&$output, $item, $depth = 0, $args = Array, $id = 0) in /home/アカウント名/ドメイン名/public_html/wp-content/themes/テーマ名/functions.php on line 0

とエラーが出る。functions.phpを覗いてみることに。start_elの部分がありました。

/*-------------------------------------------*/
class description_walker extends Walker_Nav_Menu
{
      function start_el(&$output, $item, $depth, $args)

エラーを吐いている部分のソースを下記に書き変えてみる。

/*-------------------------------------------*/
class description_walker extends Walker_Nav_Menu
{
      function start_el(&$output, $item, $depth = 0, $args =  array(), $id = 0)

問題解決しました。

テスト環境用激安ホスティング業者さん
スポンサーリンク
おすすめの記事