29 lines
676 B
PHP
29 lines
676 B
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* Plugin Name: Embedded themes tree
|
||
|
* Description: Embed your theme tree files or custom as needed
|
||
|
* Version: 1.0.0
|
||
|
* Author: Skycel
|
||
|
* Author URI: https://skycel.me
|
||
|
*/
|
||
|
|
||
|
use Skycel\CustomTree\CustomThemeTree;
|
||
|
|
||
|
require_once __DIR__ . "/custom-template.php";
|
||
|
require_once __DIR__ . "/functions.php";
|
||
|
|
||
|
function test_plugin(): void {
|
||
|
if (!\defined('USE_CUSTOMTREE_PLUGIN') || USE_CUSTOMTREE_PLUGIN !== true) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (!\defined("CUSTOMTREE") || !is_array(CUSTOMTREE)) {
|
||
|
new CustomThemeTree();
|
||
|
} else {
|
||
|
new CustomThemeTree(\CUSTOMTREE);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
add_action("after_setup_theme", "test_plugin");
|
||
|
|
||
|
//new CustomThemeTree();
|