好的,我正在调试模式下运行wordpress。我收到了很多通知。
这是我的密码。
<?php
//allows the theme to get info from the theme options page
global $options;
foreach ($options as $value) {
if (get_option( $value[\'id\'] ) === FALSE) { $$value[\'id\'] = $value[\'std\']; }
else { $$value[\'id\'] = get_option( $value[\'id\'] ); }
}
?>
这就是我所看到的。
Notice: Undefined index: id in functions\\get-options.php on line 5
Notice: Undefined index: std in functions\\get-options.php on line 5
这些通知重复了大约20次。我的代码有什么问题?。有人能帮我纠正这些错误吗。谢谢