# patternswp/1.0.0/patternswp.php

PatternsWP – Gutenberg Block Patterns &amp; Page Templates Library, version 1.0.0. 27 lines.

- Page: https://pluginprobe.com/plugins/patternswp/1.0.0/code/patternswp.php
- Raw: https://pluginprobe.com/plugins/patternswp/1.0.0/raw/patternswp.php
- Modified: 2023-04-11T13:23:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/patternswp/1.0.0/code/patternswp.php#L10-L20`.

```php
<?php
/**
 * Plugin Name:       PatternsWP
 * Plugin URI:        https://thepatternswp.com
 * Description:       A growing library of ready-made block patterns can help you build websites faster in no time.
 * Author:            PatternsWP Team
 * Author URI:        https://thepatternswp.com
 * Version:           1.0.0
 * License:           GPL-2.0+
 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
 * Text Domain:       patternswp
 * Domain Path:       /languages
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

/**
 * The core plugin class.
 */
require plugin_dir_path( __FILE__ ) . 'inc/register-block-patterns.php';
require plugin_dir_path( __FILE__ ) . 'inc/register-block-categories.php';



```
