Add Option if Not Exists
I need to see if an option, and if does, get the value. If not, I need to add it.
The Codex provides:
?php
$option_name = 'myhack_extraction_length' ;
$new_value = '255' ;
if ( get_option( $option_name ) != $new_value ) {
update_option( $option_name, $new_value );
} else {
$deprecated = ' ';
$autoload = 'no';
add_option( $option_name, $new_value, $deprecated, $autoload );
}
Which supposedly updates the option name myhack_extraction_length with the value 255. If the option does not exist then use add_option and set autoload to no.
However, it seems to me that the second half could be called in two ways, if the option does not exist OR if the new value==the option
Is this correct?