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