Concept Flow - Reading and writing settings
Start
Call get_option('setting_name')
Retrieve value from DB
Use value in code
Call update_option('setting_name', new_value)
Save new_value to DB
Confirm save success
End
This flow shows how WordPress reads a setting from the database using get_option, uses it, then writes a new value back with update_option.