wpelevator / update-client
There is no license information available for the latest version (0.0.1) of this package.
0.0.1
2025-04-01 08:05 UTC
This package is not auto-updated.
Last update: 2025-04-02 06:19:26 UTC
README
Enable updates for your WordPress plugins and themes from a custom update server like WP Elevator Update Server.
Usage
TODO: Document the namespace isolation using vendor-isolator
.
Register your plugin with the update server by adding the following to the main plugin file:
<?php
$plugin_update = new WPElevator\Update_Client\Plugin_Update(
plugin_basename( __FILE__ ),
'https://updates.example.com/wp-json/update-pilot/v1/update-check',
);
add_action( 'plugins_loaded', [ $plugin_update, 'init' ] );