Publishing a WordPress plugin
Classified in : WebMaster - Tags : wordpress, pluginYou had published a plugin in the WordPress plugin directory and you have a new version to publish: here's how to do it.
Steps
- Code the plugin updates locally until you're happy with it
- Increment the "stable" tag in your
readme.txt
file to match the new version number - Copy your local updates into the
/trunk
directory of the local plugin folder - Commit the entire plugin to save the changes to
/trunk
to the repository - Right click
/trunk
and create a new tag, copying into/tags/X.X.X
where x.x.x is the same version in the "stable" tag ofreadme.txt
(step 2) - Commit the entire plugin to save the tag
Links
There's a good set of step-by-step instructions earlier and another version of the same step-by-step guide with screenshots from Tortoise hosted on the author site.
Happy plugin publishing !