WordOrb Vocabulary
WordOrb Vocabulary plugin for WordPress — shortcodes, Gutenberg blocks, Word of the Day widget. 162K words, 47 languages.
by Lesson of the Day PBC · github.com/nicoletterankin/wordorb-wordpress · website
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/nicoletterankin/wordorb-wordpress/archive/refs/heads/master.zipWordOrb Vocabulary -- WordPress Plugin
Embed vocabulary cards, interactive quizzes, and structured lessons from the WordOrb API into any WordPress site.
Submission Guide for WordPress.org Plugin Directory
Prerequisites
- WordPress.org account -- Register at login.wordpress.org.
- Subversion (SVN) installed on your machine.
- Plugin tested on WordPress 5.8+ with PHP 7.4+.
- No external dependencies -- This plugin is self-contained (no Composer, no npm build step).
Pre-Submission Checklist
- [ ] Plugin header in
wordorb.phpincludes all required fields (Name, Description, Version, Author, License). - [ ]
readme.txtfollows WordPress.org readme standard. - [ ] No references to "premium" or "pro" versions in the free plugin.
- [ ] All strings are translatable via
__()andesc_html__(). - [ ] Text domain matches the plugin slug (
wordorb). - [ ] No external CDN calls -- all assets are local.
- [ ] API key is stored securely and never exposed in frontend HTML/JS.
- [ ] Plugin passes the Plugin Check tool.
- [ ] Tested with
WP_DEBUGenabled and no warnings/errors.
Submitting to WordPress.org
-
Request hosting at wordpress.org/plugins/developers/add.
- Plugin name:
WordOrb Vocabulary - Plugin slug:
wordorb - Upload the plugin ZIP.
- Plugin name:
-
Wait for review -- The plugin review team will review your code. This typically takes 1-5 business days.
-
Receive SVN access -- Once approved, you will get an SVN repository URL like:
https://plugins.svn.wordpress.org/wordorb/ -
Check out the repository:
svn co https://plugins.svn.wordpress.org/wordorb/ wordorb-svn cd wordorb-svn -
Copy plugin files into
trunk/:cp -r /path/to/wordorb/* trunk/ -
Tag the release:
svn cp trunk tags/1.0.0 -
Add and commit:
svn add trunk/* tags/1.0.0/* svn ci -m "Initial release 1.0.0" --username your-wp-username
Updating the Plugin
- Make changes in
trunk/. - Update the
Stable taginreadme.txtandVersioninwordorb.php. - Create a new tag:
svn cp trunk tags/1.0.1 - Commit:
svn ci -m "Release 1.0.1"
Adding Screenshots
Place screenshot files in assets/ at the SVN root (not inside trunk/):
assets/
screenshot-1.png (Word card)
screenshot-2.png (Quiz)
screenshot-3.png (Lesson)
screenshot-4.png (Settings)
screenshot-5.png (Widget)
screenshot-6.png (Gutenberg block)
banner-772x250.png (Plugin directory banner)
icon-256x256.png (Plugin icon)
Directory Structure
wordorb/
wordorb.php Main plugin file
readme.txt WordPress.org format readme
assets/
css/
wordorb.css Frontend styles
js/
wordorb.js Frontend quiz/lesson interactivity
Support
- API Documentation: wordorb.ai/docs
- Plugin Issues: Use the WordPress.org support forum after publishing.