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

https://github.com/serversideup/wp-dev-recipes

Modular, reusable code snippets for all WordPress devs.
https://github.com/serversideup/wp-dev-recipes

wordpress wordpress-development wordpress-plugin wordpress-theme

Last synced: about 1 month ago
JSON representation

Modular, reusable code snippets for all WordPress devs.

Awesome Lists containing this project

README

          



WP Dev Recipes Logo



👉 View the knowledgebase
•
Tutorials
•
Support Us



Build Status
Chat
License
Support us

# View the site
👉 See the live knowledgebase at https://wp-dev-recipes.serversideup.net/

# WP Dev Recipes
We created a collection of "recipes" to make it easier for you to build and maintain your next WordPress project.

* ✅ Each recipe is modular and re-usable that solves one problem, very well
* ✅ We cover many undocumented features inside of WordPress
* ✅ You'll never need to install plugins to solve simple functionality
* ✅ All source code is freely available under the MIT license
* ✅ Every recipe follows modern development practices
Questions, Comments, Ideas?

## Questions, Comments, Ideas?
We want this to be a living, breathing document and have these recipes be usable in as many ways as possible. If you have any questions, comments, or ideas, feel free to open a thread on our community.

👉 [Ask a question on our community →](https://community.serversideup.net/c/open-source/wp-dev-recipes/29)

For contributions and PRs to make these recipes better, see below. 👇

## Contribution Instructions
*Coming Soon*

For the time being, if you want to run this on your local development, follow these steps.

### Setup

Install dependencies:

```bash
npm run install
```

### Development

```bash
npm run dev
```

### Static Generation

This will create the `dist/` directory for publishing to static hosting:

```bash
npm run generate
```

To preview the static generated app, run `npm run start`