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

https://github.com/getdave/wp-plugin-template

A very basic starter template for a WordPress plugin.
https://github.com/getdave/wp-plugin-template

Last synced: about 1 month ago
JSON representation

A very basic starter template for a WordPress plugin.

Awesome Lists containing this project

README

          

## Getting Started

- Clone this repo to your machine providing a new folder name

```
git clone --depth 1 git@github.com:getdave/wp-plugin-template.git MY_PROJECT_NAME
```

- Remove the Git repo

```
cd MY_PROJECT_NAME
rm -rf .git/
```

- Initialise a new Git repo - `git init`.
- Use new Plugin name strings:
- Replace `getdave-plugin-template` with `getdave-MY_PROJECT_NAME`.
- Update `Plugin Name` header in `plugin.php`.
- Install dependencies - `npm i`.
- Start development! - `npm start`.