https://github.com/morebec/wplug
A lightweight, simple opiniated Wordpress Plugin development framework
https://github.com/morebec/wplug
Last synced: about 1 year ago
JSON representation
A lightweight, simple opiniated Wordpress Plugin development framework
- Host: GitHub
- URL: https://github.com/morebec/wplug
- Owner: Morebec
- Created: 2018-07-24T18:55:43.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-12T22:44:18.000Z (almost 8 years ago)
- Last Synced: 2025-02-01T23:45:15.205Z (over 1 year ago)
- Language: PHP
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WPlug
The goal of this project is to a provide a simple to use and learn Object Oriented Wordpress plugin development framework.
This framework was designed to help developers frustrated by Wordpress' strange Plugin dev API, by providing them a sensible framework to work with.
It is easy to install, understand, use and extend.
## Core features
- Object Oriented approach to plugin dev.
- Twig integration for view/logic decoupling.
- Admin dashboard components: (Menu creation, plugin settings, page)
- Easy database manipulation with Laravel's Eloquent ORM
## Getting started
### Installation
clone this repository in a vendor directory or add these lines to your `composer.json` configuration file.
```json
```
### Basic Plugin Example
...
## TODO
- Custom Post Types
- Easy CSS and Javascript enqueuing in admin + frontend.
- Easy Ajax actions
- Easy forms + Nonce
- Documentation + Guides