Where is the submitted $_POST array stored after an option page submission?

You only need one callback function, as defined in your call to register_setting() (Codex ref.): register_setting( $option_group, $option_name, $sanitize_callback ); Thus, all options are contained in an array, in a single database entry, $option_name. Then, the callback function is passed the $input variable that holds all of the form-submitted data, the function manipulates/sanitizes those data, … Read more

Putting my site live

This question has been asked many many times before. Here’s the Codex: http://codex.wordpress.org/Changing_The_Site_URL The easiest thing to do is add a couple of lines to your wp-config.php define(‘WP_HOME’,’http://example.com’); define(‘WP_SITEURL’,’http://example.com’);

Can’t save options

@Mamaduka: Here is why your settings aren’t updating. Your validation function is wrong. To wit: function ev_options_validate( $input ) { $ev_options = get_option( ‘theme_evolutionary_options’ ); $valid_input = $ev_options; $ev_options[‘color_scheme’] = array_key_exists( $ev_options[‘color_scheme’], ev_get_valid_color_schemes() ) ? $ev_options[‘color_scheme’] : ‘blue’; $ev_options[‘copytright’] = wp_kses_data( $ev_options[‘copyright’] ); return $valid_input; } You’re updating $ev_options, but returning $valid_input. You need to … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)