Trying to write my first Wordpress Plugin .... HELP!
Howsomever, I cannot get the form to save the value, or update an existing option.
As a non-coder, I have gotten myself lost trying to understand the codex and the api, including being unable to copy and paste the options page examples that are shown and make them work. If you can help me, please, please jump right in and tell me what to do.
Here's what I have for a form so far ...
// Plugin title and some other stuff
?>
<!-- Opening The Form -->
<div>
<form method="post" action="options.php">
<?php
settings_fields( 'products' );
?>
<!-- Inserting The Dropdown Box On The Page And Inside The Page Function -->
<!-- Using selected() instead -->
<select name="options[products]">
<option value="unicykes" <?php selected( $options['products'], unicykes ); ?>>unicykes</option>
<option value="bikes" <?php selected( $options['products'], bikes ); ?>>bikes</option>
<option value="trikes" <?php selected( $options['products'], trikes ); ?>>trikes</option>
</select>
<?php
do_settings_fields( 'products' );
?>
<p>
<input type="submit" value="<?php _e( 'Save Options', 'products' ); ?>" />
</p></form>
</div>
<?php
}
// End of page
?>
Dr. Samuel Johnson (Presiding at the sale of Thrales brewery, London, 1781)
Dr. Samuel Johnson (Presiding at the sale of Thrales brewery, London, 1781)
The best way to predict future is to create it ― Abraham Lincoln