| 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.3 |
| 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(); |