PluginProbe
Twentig Supercharged Block Editor – Blocks, Patterns, Starter Sites, Portfolio / 0.9
Twentig Supercharged Block Editor – Blocks, Patterns, Starter Sites, Portfolio v0.9
2.0.5 2.0.4 2.0.3 2.0.2 trunk 0.0.1 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 0.9.1 0.9.2 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 All 88 releases
twentig / twentig.php

twentig.php in Twentig Supercharged Block Editor – Blocks, Patterns, Starter Sites, Portfolio 0.9, at twentig.php

32 lines 842 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Twentig
4 * Plugin URI: https://twentig.com
5 * Description: Customize the Twenty Twenty theme even more. From Google Fonts to extra colors to blog options to custom copyright, you've got everything you need.
6 * Author: Twentig
7 * Author URI: https://twentig.com
8 * Version: 0.9
9 * License: GPLv3 or later
10 *
11 * @package twentig
12 */
13
14 // Exit if accessed directly.
15 if ( ! defined( 'ABSPATH' ) ) {
16 exit;
17 }
18
19 /**
20 * Setup plugin constants.
21 */
22 define( 'TWENTIG_VERSION', '0.9' );
23 define( 'TWENTIG_PATH', trailingslashit( plugin_dir_path(__FILE__) ) );
24 define( 'TWENTIG_URI', trailingslashit( plugin_dir_url( __FILE__ ) ) );
25 define( 'TWENTIG_ASSETS_URI', TWENTIG_URI . 'dist' );
26 define( 'TWENTIG_PLUGIN_BASE', plugin_basename( __FILE__ ) );
27
28 /**
29 * Load the Twentig plugin.
30 */
31 require_once TWENTIG_PATH . 'inc/init.php';
32