使用数组更新选项

时间:2012-02-08 16:02:03

标签: php arrays wordpress

我正在使用此代码更新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。怎么了?

0 个答案:

没有答案