Skip to content

WP-API/live-settings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Live Settings for WordPress

Update your settings, live, and avoid unnecessary page refreshes.

Installation

  1. Clone this repository, or download as a zip.
  2. Install as a plugin and activate.
  3. 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.

About

Update your settings, live.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published