WPForms Addon Settings — a practical guide to WPForms addon settings with clear examples you can reuse in real projects.
WPForms Tutorial Series (93/100). Prefer one article? Read the complete WPForms tutorial.
Short description
Store options safely, sanitize on save, and never print secrets into front-end JS.
Settings tip
register_setting('acme_wpforms', 'acme_wpforms_settings', [
'type' => 'array',
'sanitize_callback' => 'acme_wpforms_sanitize_settings',
]);