php7.4 -> php8.0にすると「このサイトで重大なエラーが発生しました」となり表示できない。
wp-content/themes/chocolat/functions.php ファイルの 2154 行目で発生しました。 エラーメッセージ: Uncaught Error: Call to undefined function create_function() in /foo/bar/wp-content/themes/chocolat/functions.php:2154
create_functionが使えなくなったようだ。無名関数に変更するとのこと。
--- functions-sv20260524.php 2021-02-17 19:40:44.239139747 +0900 +++ functions.php 2026-05-24 15:00:38.803726595 +0900 @@ -433,7 +433,7 @@ $comment_cnt = 0; $comments = get_approved_comments( $id ); foreach ( $comments as $comment ) { - if ( $comment->comment_type === '' ) { + if ( $comment->comment_type === '' || $comment->comment_type === 'comment') { $comment_cnt++; } } @@ -2151,7 +2151,7 @@ <?php } } -add_action( 'widgets_init', create_function( '', 'return register_widget( "Chocolat_Widget_New_Entrys" );' ) ); +add_action( 'widgets_init', function(){return register_widget( "Chocolat_Widget_New_Entrys" );}); /* ---------------------------------------------- * 99.2 - Category Recent Posts Widget @@ -2262,7 +2262,7 @@ <?php } } -add_action( 'widgets_init', create_function( '', 'return register_widget( "Chocolat_Widget_Category_Recent_Posts" );' ) ); +add_action( 'widgets_init', function(){return register_widget( "Chocolat_Widget_Category_Recent_Posts" );}); /* ---------------------------------------------- * 99.3 - PageNavi Widget @@ -2340,4 +2340,4 @@ <?php } } -add_action( 'widgets_init', create_function( '', 'return register_widget( "Chocolat_Widget_PageNavi" );' ) ); \ No newline at end of file +add_action( 'widgets_init', function(){return register_widget( "Chocolat_Widget_PageNavi" );});
- 参考ページは以下。
