Wordpress - WordPress Settings and Configuration
What will be the output of this code?
update_option('site_mode', 'live');
$mode = get_option('site_mode', 'test');
echo $mode;