此错误出现在 index.php 文件中
警告:非法字符串偏移 'id' 警告:非法字符串偏移 'std'
<?php
global $options;
foreach ($options as $value) {
if (get_settings( $value['id'] ) === FALSE) {
$$value['id'] = $value['std'];
} else {
$$value['id'] = get_settings( $value['id'] );
}
}
尝试在 Wordpress 中加载新主题时出现此问题...