blob: e87d3bff0e32d56208d62b1f030663cf7fbb6abd (
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.1
* Author URI: https://dweipert.de
*/
require 'vendor/autoload.php';
add_action('plugins_loaded', 'timberEditor');
function timberEditor() {
new \TimberEditor\TimberEditor();
}
|