-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.php
30 lines (27 loc) · 1.21 KB
/
plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/**
* Fast websites are more accessible, more sustainable and are giving a better UX. This is the code which accelerates figuren.theater and its WordPress Multisite Network.
*
* @package figuren-theater/ft-performance
* @author figuren.theater
* @copyright 2023 figuren.theater
* @license GPL-3.0-or-later
*
* @wordpress-plugin
* Plugin Name: figuren.theater | Performance
* Plugin URI: https://github.com/figuren-theater/ft-performance
* Description: Fast websites are more accessible, more sustainable and are giving a better UX. This is the code which accelerates figuren.theater and its WordPress Multisite Network.
* Version: 1.5.1
* Requires at least: 6.0
* Requires PHP: 7.2
* Author: figuren.theater
* Author URI: https://figuren.theater
* Text Domain: figurentheater
* Domain Path: /languages
* License: GPL v3 or later
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
* Update URI: https://github.com/figuren-theater/ft-performance
*/
namespace Figuren_Theater\Performance;
const DIRECTORY = __DIR__;
add_action( 'altis.modules.init', __NAMESPACE__ . '\\register' );