-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomblock-html.php
43 lines (37 loc) · 1.18 KB
/
comblock-html.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
43
<?php
/**
* @link https://github.com/rosario-fiorella/wordpress-comblock-html/
* @since 1.0.0
* @package wordpress-comblock-html
* @author Rosario Fiorella
*
* @wordpress-plugin
* Plugin Name: Comblock HTML UI
* Plugin URI: https://github.com/rosario-fiorella/wordpress-comblock-html/
* Description: WordPress plugin that provides a service class to generate html
* Version: 1.0.0
* Requires at least: 6.0
* Requires PHP: 7.4
* Author: Rosario Fiorella
* Author URI: https://github.com/rosario-fiorella/
* Text Domain: comblock-html
* Update URI: /
* Domain Path: /languages
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*/
if (!defined('WPINC')) {
die;
}
if (defined('WP_CLI') && WP_CLI) {
return;
}
/**
* @see https://semver.org
*/
define('COMBLOCK_HTML_VERSION', '1.0.0');
define('COMBLOCK_HTML_DOMAIN', 'comblock-html');
define('COMBLOCK_HTML_PLUGIN_FILE', __FILE__);
require_once plugin_dir_path(__FILE__) . 'includes/class-comblock-html.php';
$comblock_html = new Comblock_Html();
$comblock_html->run();