| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: PatternsWP |
| 4 |
* Plugin URI: https://thepatternswp.com |
| 5 |
* Description: A growing library of ready-made block patterns can help you build websites faster in no time. |
| 6 |
* Author: PatternsWP Team |
| 7 |
* Author URI: https://thepatternswp.com |
| 8 |
* Version: 1.0.0 |
| 9 |
* License: GPL-2.0+ |
| 10 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt |
| 11 |
* Text Domain: patternswp |
| 12 |
* Domain Path: /languages |
| 13 |
*/ |
| 14 |
|
| 15 |
// If this file is called directly, abort. |
| 16 |
if ( ! defined( 'WPINC' ) ) { |
| 17 |
die; |
| 18 |
} |
| 19 |
|
| 20 |
/** |
| 21 |
* The core plugin class. |
| 22 |
*/ |
| 23 |
require plugin_dir_path( __FILE__ ) . 'inc/register-block-patterns.php'; |
| 24 |
require plugin_dir_path( __FILE__ ) . 'inc/register-block-categories.php'; |
| 25 |
|
| 26 |
|
| 27 |
|