WP Manifestindependent plugin directory
manifest / developer / wp-plugin-structure

WP Plugin Structure

A simple WordPress plugin structure with a focus on modularity and extensibility.

by osmansufy · github.com/osmansufy/wp-plugin-structure

0stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/osmansufy/wp-plugin-structure/archive/refs/heads/master.zip

wp-plugin-structure/ ├── includes/ # PSR-4 autoloaded classes │ ├── Abstracts/ # Abstract classes │ ├── Core/ # Core functionality │ ├── Container.php # DI container │ └── ... ├── vendor/ # Composer dependencies ├── composer.json # Composer configuration └── wp-plugin-structure.php # Main plugin file