# twentig/0.5/inc/init.php

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

- Page: https://pluginprobe.com/plugins/twentig/0.5/code/inc/init.php
- Raw: https://pluginprobe.com/plugins/twentig/0.5/raw/inc/init.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/inc/init.php#L10-L20`.

```php
<?php
/**
 * Twentig plugin file.
 *
 * @package twentig
 */

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

/**
 * Include Twenty Twenty specific files.
 */
if ( 'twentytwenty' === get_template() ) {
	require_once TWENTIG_PATH . 'inc/twenty-twenty.php';
	require_once TWENTIG_PATH . 'inc/font.php';
	require_once TWENTIG_PATH . 'inc/page-templater.php';
}

```
