If I write a private plugin, is there any way to use the WordPress auto-update mechanism to update it?
I want to encapsulate the functionality, but it’s specific to my own 5 or so blogs, so it’s not a good candidate for the public plugins resource. But I love the easy-updating mechanism.
Is there a way to do this?
Since WordPress v5.8, it is a lot simpler to create yourself a basic version of custom plugin update functionality.
Step 1
Create JSON file on your server. It will contain info about latest version number of your plugin(s) and link to ZIP file(s) for WordPress to automatically download it when update is triggered.
Example location: https://my-domain.com/custom-plugins/plugins-info.json
Example content:
You can add multiple plugins info to that JSON. Just ensure that plugin key for each is in directory_name/file_name.php format.
Of course, only when plugin version in JSON is larger than version you have installed, WordPress will show you that new version is available.
For full list of plugin(s) data you can set in JSON file, check $update parameter here
Step 2
Add “Update URI” to plugin’s main file (comment section). It should link to your custom JSON file you created in step 1.
Step 3
Add this code to custom plugin’s main file (or to functions.php)
IMPORTANT: Change “my-domain.com” inside add_filter function to actual domain you are using for JSON file.
Looks like the applicable code is in
wp-includes/update.php
,wp_update_plugins()
:It specifically checks api.wordpress.org. Technically speaking it would be possible to pass a key inside
$to_send
to delegate the check, but to my knowledge that is not a supported feature.If you hook into
set_site_transient_update_plugins
you could add your own package details into this variable. It looks like those values will be trusted when you run the plugin updater. Seewp-admin/update.php
andwp-admin/includes/class-wp-upgrader.php
. Given the code in these two functions, I think it would be possible to inject your own update server, you just need to look at how the package details are formatted and match that.This plugin does it for you:
GitHub repository
If you like free … and want to use something like GitHub, GitLab, or BitBucket, this is a good quality and supported plugin for handling it (supports private and enterprise):
https://github.com/afragen/github-updater
I’m looking into the same thing. A couple of links that I’ve found that might be helpful:
The first is some info and pointers to the upgrades API. The second is a code snippet showing how to actually request info from the API.
get_api_data()
You may want to check out the WordPress Development Kit plugin. I recently migrated my proprietary update system to this plugin. The plugin now serves as the back-end processor for my premium plugin updates.
This is similar in setup to the solution provided by agileapricot above. It will install as a standard plugin on a WordPress site. You host your premium .zip files and the plugins.json in production or prerelease directories on your server (specified in the settings for the plugin).
The plugin also allows you to list plugin versions and can even provide a download for the files on public, password-protected, or subscription-protected pages. You can see an example of the on-page version list here.
I have been using the plugin for months to publish the change log for my premium add-ons, the current versions list, and download lists for my Premier Subscription holders. Now, with version 0.7.01, it is working as the query destination for inline WordPress updates.
Hope some of you find it useful.
If you want a hosted solution that you don’t have to manage, check out Kernl (https://kernl.us). Its a service that provides the infrastructure for updating plugins and makes it easy to integrate into your own plugins.
If you’re interested in creating your own update server, it is easy enough to do without libraries using only two filter hooks
plugins_api
andsite_transient_update_plugins
plugins_api
– used to get the plugin information and display it in modal window, example:site_transient_update_plugins
is needed to push the update from your server.More on that in this tutorial: https://rudrastyh.com/wordpress/self-hosted-plugin-update.html
you can use this commercial plugin: http://autohosted.com/
no limitation and have several other feature you might need: