osenco / wp-settings
An interactive base to create your Wordpress settings page, and a foundation for your OOP plugins.
v1.20.6
2020-06-11 04:56 UTC
Requires
- php: >=7.0
This package is auto-updated.
Last update: 2025-01-12 21:02:27 UTC
README
The Settings Page
Installation
Via Composer
Navigate to the base of your plugin/theme direcory and run the following command
composer require osenco/wp-settings
Remember to include the autoloder in your plugin main file, or your theme's functions.php
require_once __DIR__.'/vendor/autoload.php';
Usage
See this sample class for example usage.
The OOP Plugin Base
You can use this package as a base to create your plugin or theme in a purely OOP PHP implementation. Just install it as above and create an src
directory in your theme/plugin directory that will house all your namespaced code.
Autoloading Classes
Remember to edit the composer.json file to include an autoloader for your custom code.
composer.json
... "autoload": { "psr-4": { "Your\\Namespace\\": "src/" } } ...