Live Settings
Update your settings, live.
by WordPress REST API Focus Team · github.com/wp-api/live-settings
★ 27stars
1forks
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/wp-api/live-settings/archive/refs/heads/master.zipReadme
Live Settings for WordPress
Update your settings, live, and avoid unnecessary page refreshes.
Installation
- Clone this repository, or download as a zip.
- Install as a plugin and activate.
- That's it!
Using in Plugins
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.