16 lines
440 B
PHP
16 lines
440 B
PHP
<?php
|
|
|
|
/**
|
|
* Plugin Name: Acorn Plugin
|
|
* Description: Start für ein Acorn Wordpress Plugin
|
|
* Requires at least: 5.2
|
|
* Requires PHP: 8.4
|
|
* Version: 0.01
|
|
* Author: Jan-Niclas Loosen - Loosen-IT
|
|
* Author URI: https://loosen-it.de
|
|
*/
|
|
|
|
// The boot election lives in bootstrap.php; the shortcode, namespaced views and
|
|
// Livewire registration live in AcornPlugin\Providers\PluginServiceProvider.
|
|
include_once __DIR__ . '/bootstrap.php';
|