Xe Plugin is a starter boilerplate for WordPress plugin developers. It provides a clean, modular codebase along with a pre-configured build process to speed up plugin development. Designed with scalability in mind, this plugin helps you quickly set up your own functionality — whether you’re building for clients or preparing a product for the marketplace.
Key Features:
- Organized file structure following WordPress best practices
- Saves time by providing reusable core plugin features
- Easily extendable to support custom post types, shortcodes, admin pages, and more
- Ideal for rapid development of client projects or commercial plugins
Who it's for:
Freelancers, agencies, or product developers who want a reliable, modern foundation for creating powerful WordPress plugins.
Latest version of:
- Rename the plugin folder to your desired plugin name. Example:
xuraisorxu-rais. - Open
config.jsonwith your favorite editor.- Change
"name"to your plugin name eg:XuraisorXu Rais. - Change
"jsObject"to a unique JS object name. e.g:xuRais. - Change
"endpointsKeyPrefix"to a unique prefix for endpoints. e.g:xuraisorxus. - Change
"build"to your desired folder path.
- Change
- Open command line and navigate to the plugin directory.
- Run
php xe initcommand to change text-domain, prefixes, DocBlocks etc. - Run
php xe buildcommand to generate a clean copy in build folder.
Note: Translation .pot files are generated inside the languages folder during the build process.
🖥️ Hello, fellow developer! 🙂
Your pull requests will be highly welcomed. If you're looking for something to start with, you can check the issues or open one about something you want to contribute and we can discuss it before your pull request.
- You must have latest version of WordPress and Composer.
- Create a fork of this repository.
- Clone the fork on your local machine. Your remote repo on Github is called
origin. - Add the original repository as a remote called
upstream. - If you created your fork a while ago be sure to pull upstream changes into your local repository.
- Create a new branch to work on. Keep in mind that code should meet the WordPress Coding Standards.
- Once changes/feature/fix is completed, push your branch to your fork on Github, the remote
origin. - From your fork open a pull request in the correct branch. Target this project's
mainbranch.