Update your settings, live, and avoid unnecessary page refreshes.
- Clone this repository, or download as a zip.
- Install as a plugin and activate.
- That's it!
Live Settings automatically attaches to all pages under the Settings menu in the admin. This should work automatically on plugin settings pages as well, however you will need to register your settings:
add_action( 'rest_api_init', __NAMESPACE__ . '\\register_settings' );
function register_settings() {
register_setting( 'optiongroup', 'my_custom_setting', array(
'type' => 'boolean',
'show_in_rest' => true,
));
}
Live Settings will attach to your page and automatically discover the settings input fields that match.