https://github.com/vlazic/wp-plugin-base
Opinionated plugin boilerplate for WordPress
https://github.com/vlazic/wp-plugin-base
wordpress wordpress-boilerplate wordpress-development wordpress-plugin wp wp-plugin
Last synced: about 2 months ago
JSON representation
Opinionated plugin boilerplate for WordPress
- Host: GitHub
- URL: https://github.com/vlazic/wp-plugin-base
- Owner: vlazic
- License: mit
- Created: 2017-11-30T02:04:45.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-14T08:48:34.000Z (about 2 years ago)
- Last Synced: 2025-04-02T23:39:11.104Z (about 1 year ago)
- Topics: wordpress, wordpress-boilerplate, wordpress-development, wordpress-plugin, wp, wp-plugin
- Language: PHP
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WP Plugin Base
This is opinionated template for new WordPress plugin.
## Features
1. Automatic versioning. Every commit will bump next minor version number.
2. Automatic creation of plugin .zip file. Zip files are placed in **bulid/** folder after each commit.
3. Plugin class with some useful methods
4. Simple Template class
## Installation
Download this project (change *MY-PLUGIN-NAME* to the name of your plugin)
```
mkdir MY-PLUGIN-NAME
cd MY-PLUGIN-NAME
git clone git@github.com:vlazic/wp-plugin-base.git .
./init.sh
wp plugin activate MY-PLUGIN-NAME
```