PluginProbe
Gutenberg Essential Blocks – Page Builder for Gutenberg Blocks & Patterns / 6.4.1
Gutenberg Essential Blocks – Page Builder for Gutenberg Blocks & Patterns v6.4.1
6.4.3 6.4.2 6.4.1 6.4.0 6.3.0 6.2.1 6.2.0 6.1.4 6.1.3 6.1.2 6.1.1 6.1.0 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.2.0 1.3.0 1.3.1 2.0.0 2.0.1 2.0.2 2.1.0 2.2.0 All 198 releases
essential-blocks / essential-blocks.php

essential-blocks.php in Gutenberg Essential Blocks – Page Builder for Gutenberg Blocks & Patterns 6.4.1, at essential-blocks.php

29 lines 764 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Plugin Name: Essential Blocks
5 * Plugin URI: https://essential-blocks.com
6 * Description: The Ultimate Gutenberg blocks library to create WordPress sites in the Gutenberg Block Editor with 70+ essential blocks, patterns, templates for WooCommerce, posts, & more.
7 * Author: WPDeveloper
8 * Author URI: https://wpdeveloper.com
9 * Version: 6.4.1
10 * License: GPL3+
11 * License URI: http://www.gnu.org/licenses/gpl-3.0.txt
12 * Text Domain: essential-blocks
13 *
14 * @package Essential_Blocks
15 */
16 if ( ! defined( 'ABSPATH' ) ) {
17 exit;
18 }
19
20 // Define things
21 define( 'ESSENTIAL_BLOCKS_FILE', __FILE__ );
22
23 require_once __DIR__ . '/autoload.php';
24
25 function wpdev_essential_blocks() {
26 return EssentialBlocks\Plugin::get_instance();
27 }
28
29 wpdev_essential_blocks();