blob: 10b60073a0eb628f1a3a892ae364a0645f76fd6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
/**
* Plugin Name: Timber Editor
* Description: Admin Editor for Timber
* Plugin URI: https://gitlab.com/DRogueRonin/wp-plugin-timber-editor
* Author: Daniel Weipert
* Version: 1.0.0
* Author URI: https://dweipert.de
*/
require 'vendor/autoload.php';
add_action('plugins_loaded', 'timberEditor');
function timberEditor() {
new \TimberEditor\TimberEditor();
}
|