White Labeling
<?php
/**
* Plugin Name: My Test Plugin
* Version: 1.0.0
* Requires at least: 5.7
* Requires PHP: 8.0
*/
// Define white-labeling constants.
\define( 'DeepWebSolutions\Framework\DWS_WP_FRAMEWORK_WHITELABEL_NAME', 'My Awesome Company Name' );
// Load the Composer autoloader.
\is_file( __DIR__ . '/vendor/autoload.php' ) && require_once __DIR__ . '/vendor/autoload.php';
Last updated