"A drop-in library for WordPress themes or plugins to manage updates."
self-hosted...can't be submitted to official WordPress repository...non-GPL licensed...custom-made...commercial...etc.
- PHP 5.2.4+
- WordPress 4.4.0+
- Grab the
class-external-update-manager.php
file and place it somewhere inside the theme or plugin directory - Add a
require_once
call in the theme'sfunctions.php
or in the plugin'smain php file
referencing the class file - Run the
EUM_Handler
with thefull path
of the theme or plugin and theupdate URL
to check for the latest version available
require_once 'class-external-update-manager.php';
EUM_Handler::run( __FILE__, '<UPDATE URL>' );