PHP 提示 Creating default object from empty value 的问题,一般是由于PHP版升级的原因,PHP 5.4 以上的版本一般会报这个错误。
解决方法是找到报错的位置然后看哪个变量是没有初始化而直接使用的,将这个变量先实例化一个空类。如:
- $ct = new stdClass();
修改文件相应代码,如:
- if ( ! isset( $themes[$current_theme] ) ) {
- delete_option( 'current_theme' );
- $current_theme = get_current_theme();
- }
- $ct = new stdClass(); <!--添加这行-->
- $ct->name = $current_theme;
问题解决