我在 Wordpress 中做了一个选项页面。我有一个文本框,并在一个 id 中放置一个值。现在我想将一组值存储在一个 ID 中。我在主题选项中存储一个文本的代码。
array( "name" => __('Text'),
"desc" => __('Your Text username, to be used on the links'),
"id" => $shortname."_test",
"std" => "Tset",
"type" => "text"),
从文本框中保存数据
case 'text':
?>
<tr valign="top">
<th scope="row"><label for="<?php echo $value['id']; ?>"><?php echo __($value['name'],'twentyeleven'); ?></label></th>
<td>
<input name="<?php echo $value['id']; ?>" id="<?php echo $value['id']; ?>" type="<?php echo $value['type']; ?>" value="<?php if ( get_option( $value['id'] ) != "") { echo get_option( $value['id'] ); } else { echo $value['std']; } ?>" />
<?php echo __($value['desc'],'twentyeleven'); ?>
</td>
</tr>
我想创建更多文本字段并保存在一个 ID 中。