21 lines
459 B
PHP
21 lines
459 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
|
|
*/
|
|
|
|
include_once 'bootstrap.php';
|
|
|
|
$renderHello = function () {
|
|
if (function_exists('view')) {
|
|
return view('hello-world')->render();
|
|
}
|
|
|
|
return 'Hello World';
|
|
};
|
|
add_shortcode('acorn_hello', $renderHello); |