I have the following form in my plugin in the admin panel
<form method="post" action="options.php">
<?php settings_fields('example_options'); ?>
<?php $options = get_option('example_settings'); ?>
<table class="form-table">
<tr valign="top"><th scope="row">Standard option</th>
<td><input name="example_settings[option1]" type="checkbox" value="1" <?php checked('1', $options['option1']); ?> /></td>
</tr>
</tr>
<!-- Data below is which I want to deal with manually. -->
<tr valign="top"><th scope="row">Test option</th>
<td><input type="text" name="example_test[data]" value="" /></td>
</tr>
</table>
<p class="submit">
<input type="submit" class="button-primary" value="<?php _e('Submit') ?>" />
</p>
</form>
I have the following hooked to admin_init
register_setting('example_options', 'example_settings');
Example_settings[option1] is being saved in the wp_options table, which I want it to.
But I want to write example_test[data] to a custom table. In order to do this, I need to get the posted value. How do I retrieve this data after submitting?
var_dump($_POST); gives me a boolean false. Apparently somewhere Wordpress unsets the POST data after handling it.