我正在使用此代码更新wordpress中的主题选项页面:
if ( $_POST['update_themeoptions'] == 'true' ) {
foreach ($options_fields as $field) {
$fieldname = get_option($field['id']);
update_option($fieldname, $_POST[$fieldname]);
} // end foreach
}
它不起作用,但我在生成字段html时使用相同的数组$ options_fields。怎么了?