avatar
Develop Custom Plugin for WordPress WordPress

• First and foremost, let us create general example that can be used to develop a custom plugin for WordPress, including those that can inject functionality into the WordPress admin dashboard.

<slug-of-plugin>/
├── assets/
│   ├── css/
│   │   ├── style.css
│   │   └── <slug of name of Plugin>.css
│   ├── js/
│   │   ├── script.js
│   │   └── <slug of name of Plugin>.js
│   └── images/
│       ├── logo.png
│       └── icon.png
├── include/
│   ├── helpers.php
│   ├── functions.php
│   └── classes/
│       └── MyClass.php
├── views/
│   ├── front-end/
│   │   ├── template1.php
│   │   └── template2.php
│   └── admin/
│       ├── admin-page.php
│       └── settings-page.php
├── index.php
├── <slug-of-plugin>.php
├── ReadMe.md
└── uninstall.php

• Continue...

You need to login to do this manipulation!