-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfse-classic.php
42 lines (36 loc) · 1.16 KB
/
fse-classic.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
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* Site Editor Classic Features
* php version 5.6
*
* @package WP_Syntex\FSE Classic
* @author WP SYNTEX
* @license GPL-3.0-or-later
*
* @wordpress-plugin
* Plugin Name: Site Editor Classic Features
* Plugin URI: https://polylang.pro
* Description: Allows to use classic widgets and menus in Site Editor.
* Version: 1.0
* Requires at least: 5.9
* Requires PHP: 7.0
* Author: WP SYNTEX
* Author uri: https://polylang.pro
* Text Domain: fse-classic
* License: GPL v3 or later
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
*
* Copyright 2022 WP SYNTEX
*
* This program incorporates work from the plugin Legacy Widget Block
* Copyright 2022 Justin Tadlock (email : [email protected])
* Legacy Widget Block is released under the GPL V2 or later.
*/
namespace WP_Syntex\FSE_Classic;
defined( 'ABSPATH' ) || exit;
define( 'FSE_CLASSIC_VERSION', '1.0' );
define( 'FSE_CLASSIC_FILE', __FILE__ );
if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {
require_once __DIR__ . '/vendor/autoload.php';
}
( new Plugin() )->init();