-
Notifications
You must be signed in to change notification settings - Fork 0
/
wxyz-blocks.php
35 lines (32 loc) · 901 Bytes
/
wxyz-blocks.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
<?php
/**
* Plugin Name: WXY...Z Blocks
* Plugin URI: https://sarahjobs.com/wordpress/plugins/wxyz-blocks
* Description: Structure to work with multiple blocks in a single plugin.
* Version: 1.0.0-beta
* Requires at least: 5.8
* Requires PHP: 7.4
* Author: Sarah Siqueira
* Author URI: https://sarahjobs.com/about
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl.html
* Text Domain: wxyz-blocks
* Domain Path: /languages
* Update URI: https://sarahjobs.com/wordpress/plugins/wxyz-blocks/update
*
* @package wxyzblocks
*/
/**
* Exit is accessed directly.
*/
defined( 'ABSPATH' ) || exit;
/**
* Composer Autoload
*/
require __DIR__ . '/vendor/autoload.php';
/**
* Bootstraps the plugin
*/
use WXYZBlocks\Inc\Init;
$init = new Init();
$init->register_classes_list();