Save and retrieve custom plugin options value
The option will be stored in the table $wp_prefix . “options” as an array. You can get the option with $myoptions = get_option(‘plugin_options’); try var_export( $myoptions ); to see that. There is also a hidden page in wp-admin/options.php where you can see all saved options.