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.
- Host: GitHub
- URL: https://github.com/serversideup/wp-dev-recipes
- Owner: serversideup
- License: mit
- Created: 2020-09-14T21:11:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-14T21:15:12.000Z (over 5 years ago)
- Last Synced: 2024-04-14T22:48:58.548Z (almost 2 years ago)
- Topics: wordpress, wordpress-development, wordpress-plugin, wordpress-theme
- Language: Vue
- Homepage: https://wp-dev-recipes.serversideup.net/
- Size: 3.17 MB
- Stars: 11
- Watchers: 4
- Forks: 2
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
👉 View the knowledgebase
•
Tutorials
•
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`