Complete the code to set the site title in WordPress.
update_option('blogname', [1]);
The update_option function updates the site title by passing the new title as a string.
Complete the code to retrieve the WordPress timezone setting.
$timezone = get_option([1]);The timezone_string option holds the timezone setting in WordPress.
Fix the error in the code to update the admin email in WordPress.
update_option('admin_email', [1]);
The new email must be a string in quotes to update the admin email correctly.
Fill both blanks to get and update the WordPress site description.
$desc = get_option([1]); update_option([2], 'New description here');
The option name for the site description is blogdescription. Use it to get and update the description.
Fill all three blanks to create a custom option and retrieve it in WordPress.
add_option([1], [2]); $value = get_option([3]);
Use the same option name custom_setting to add and get the option. The value is a string.
