WP Plugin Structure
A simple WordPress plugin structure with a focus on modularity and extensibility.
★ 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.zipwp-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