wordpressでドメイン変更を伴うサイト引越しをした際に、大量のエラーが出ていることに気づきました。
■引越し後の環境
CentOS7、H2O(webサーバー)、php7.4、MySQL5.7
「Trying to access array offset on value of type」で始まる2パターンのNoticeがリクエストがある度に出ております。
解決方法やアドバイスいただけると助かります。
よろしくお願いします。
1)
■エラー表示
PHP Notice: Trying to access array offset on value of type bool in /var/www/wordpress/wp-content/themes/the-thor/inc/parts/wp_head.php on line 624
■該当箇所のソースコード
618 //カテゴリー系のカラー 619 $categories = get_categories();//カテゴリカラーの出力 620 foreach($categories as $term){ 621 $term_id = $term->cat_ID; //タームID 622 $taxonomy = $term->taxonomy; //タームIDに所属しているタクソノミー名 623 $term_meta = get_option( $taxonomy . '_' . $term_id );//DBから情報を取得 624 if($term_meta['color']){ 625 echo '.cc-ft'.$term_id.'{color:'.$term_meta['color'].';}'; 626 echo '.cc-hv'.$term_id.':hover{color:'.$term_meta['color'].';}'; 627 echo '.cc-bg'.$term_id.'{background-color:'.$term_meta['color'].';}'; 628 echo '.cc-br'.$term_id.'{border-color:'.$term_meta['color'].';}'; 629 } 630 }
2)
■エラー表示
PHP Notice: Trying to access array offset on value of type null in /var/www/wordpress/wp-includes/post-template.php on line 327
■該当箇所のソースコード
326 $page_no = $elements['page']; 327 $content = $elements['pages'][ $page_no - 1 ]; 328 if ( preg_match( '/<!--more(.*?)?-->/', $content, $matches ) ) { 329 if ( has_block( 'more', $content ) ) { 330 // Remove the core/more block delimiters. They will be left over after $content is split up. 331 $content = preg_replace( '/<!-- /?wp:more(.*?) -->/', '', $content ); 332 } 333 334 $content = explode( $matches[0], $content, 2 ); 335 336 if ( ! empty( $matches[1] ) && ! empty( $more_link_text ) ) { 337 $more_link_text = strip_tags( wp_kses_no_null( trim( $matches[1] ) ) ); 338 } 339 340 $has_teaser = true; 341 } else { 342 $content = array( $content ); 343 }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/13 12:33