This post is part of the ClassicPress Plugin Development series in which I am going to look at both best practice for developing plugins and how I approach some requirements as well as some of the functions I commonly use.
When developing a plugin, most of them will have settings which need to be saved ad recalled. There are functions available in ClassicPress which you can use to do this:
get_option
update_option
If your plugin contains multiple options, then best practice would be to store these in an array within one option rather than each option stored individually.
The get_option
is used to load options from the database:
get_option( string $option, mixed $default = false )
Parameters
Return
The below is an example of loading options from my SMTP plugin:
$options = get_option( 'azrcrv-smtp' );
The update_option
function is used to save options:
update_option( string $option, mixed $value, string|bool $autoload = null )
Parameters
Return
The below is an example of saving options from my SMTP plugin:
update_option( 'azrcrv-smtp', $options );