10+
August 6, 2020
August 6, 2020
The WordPress Updates API is pretty much a mystery to many developers for many reasons, not least of which is the fact that there is no documentation for it.
For plugins hosted in the WordPress Plugin Directory and themes hosted in the WordPress Theme Directory (and core itself), the API “just works”.
Plugins and themes hosted externally (such as premium plugins/themes) need to hook into the API and ensure the proper information is populated in the proper site transients so that core can offer updates for those externally hosted plugins/themes. What site transients are those:
update_pluginsupdate_themes(and of course, update_core for core updates).
This plugin attempts to demystify the Updates API by allowing you to inspect:
At this point, this plugin is very preliminary (it is version 0.1.1 after all), but I’m releasing it in it’s current state because of the new Auto-updates UI in WordPress 5.5.0. While many externally hosted plugins/themes have been hooking into API for years, the new auto-updates UI has certain requirements for how the site transients are populated and not all externally hosted plugins/themes have populated them such that the new UI will work properly (see Recommended usage of the Updates API to support the auto-updates UI for Plugins and Themes in WordPress 5.5).
My hope is that by providing an easy way for developers to inspect the API queries/responses and the site transients core populates from them, they will more easily be able to update their code so that the new UI works properly for them.
In future versions, I plan to add many other features, as well as more extensive on-screen help of an “educational” nature.
From your WordPress dashboard
That’s a good question, and I honestly don’t know the answer.
There is no best hook!
The most common hooks used are probably:
A number of other hooks can be used, but except in *very special** cases I wouldn’t recommend them…so I’m not even going to list what they are 🙂
Many considerations go into deciding which hook to use and I couldn’t possibly give those considerations their due here…so I won’t even try.
It should! My main motivation for releasing it now is to help developers of externally hosted plugins/themes prepare for the release of 5.5.0, this plugin should work just fine with previous versions (although I have only tested it with 5.5.0).
Yes it does!
In non-multisite, the Updates API Inspector menu item appers in Tools.
In multisite, this plugin can only be network activated (since that’s where updates happen) and the menu item appears at the top-level of Network Admin.
Yes you can! Development happens on GitHub. If you find a bug or have other suggestions, please open an issue there. Pull requests accepted.