# twentig/0.5/twentig.php

Twentig Supercharged Block Editor – Blocks, Patterns, Starter Sites, Portfolio, version 0.5. 31 lines.

- Page: https://pluginprobe.com/plugins/twentig/0.5/code/twentig.php
- Raw: https://pluginprobe.com/plugins/twentig/0.5/raw/twentig.php
- Modified: 2020-02-24T14:24: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/twentig/0.5/code/twentig.php#L10-L20`.

```php
<?php
/**
 * Plugin Name: Twentig
 * Plugin URI: https://wordpress.org/plugins/twentig
 * Description: From Google Fonts to extra colors to blog options to custom copyright, you've got everything you need to customize the Twenty Twenty theme even more.
 * Author: Twentig
 * Version: 0.5
 * License: GPLv3 or later
 *
 * @package twentig
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Setup plugin constants.
 */
define( 'TWENTIG_VERSION', '0.5' );
define( 'TWENTIG_PATH', trailingslashit( plugin_dir_path(__FILE__) ) );
define( 'TWENTIG_URI', trailingslashit( plugin_dir_url( __FILE__ ) ) );
define( 'TWENTIG_ASSETS_URI', TWENTIG_URI . 'dist' );
define( 'TWENTIG_PLUGIN_BASE', plugin_basename( __FILE__ ) );

/**
 * Load the Twentig plugin.
 */
require_once TWENTIG_PATH . 'inc/init.php';

```
