https://github.com/bigboxwc/wp-plugin
Base WordPress plugin scaffold.
https://github.com/bigboxwc/wp-plugin
wordpress wordpress-plugin
Last synced: about 2 months ago
JSON representation
Base WordPress plugin scaffold.
- Host: GitHub
- URL: https://github.com/bigboxwc/wp-plugin
- Owner: bigboxwc
- License: gpl-3.0
- Created: 2018-07-18T18:18:14.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T23:29:02.000Z (over 3 years ago)
- Last Synced: 2025-04-09T15:55:03.583Z (about 1 year ago)
- Topics: wordpress, wordpress-plugin
- Language: PHP
- Homepage: https://bigboxwc.com/
- Size: 1.71 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 57
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
- _Replace `BigBox\Plugin` with your namespace_
- _Replace `PLUGIN` constant with your constant prefix_
- _Replace `'plugin'` text domain with your text domain_
- _Replace `'plugin_` function prefixes with your function prefix_
# Plugin
WordPress plugin base.
## Install
#### Clone Repository
```
$ git clone git@github.com:bigboxwc/wp-plugin wp-plugin && cd wp-plugin
```
#### Setup Plugin
```
$ npm run setup-plugin
```
## Develop
```
$ npm run dev
```
## Lint
#### Javascript
```
$ npm run lint
```
#### CSS
```
$ npm run css-lint
```
#### PHP
```
$ composer run lint
```
## Release
```
$ npm run package-plugin
```