Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bigboxwc/wp-plugin

Base WordPress plugin scaffold.
https://github.com/bigboxwc/wp-plugin

wordpress wordpress-plugin

Last synced: about 1 month ago
JSON representation

Base WordPress plugin scaffold.

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 [email protected]: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
```