PluginProbe
Twentig Supercharged Block Editor – Blocks, Patterns, Starter Sites, Portfolio / 1.0
Twentig Supercharged Block Editor – Blocks, Patterns, Starter Sites, Portfolio v1.0
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 / inc / init.php

init.php in Twentig Supercharged Block Editor – Blocks, Patterns, Starter Sites, Portfolio 1.0, at inc/init.php

26 lines 708 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Twentig plugin file.
4 *
5 * @package twentig
6 */
7
8 // Exit if accessed directly.
9 if ( ! defined( 'ABSPATH' ) ) {
10 exit;
11 }
12
13 /**
14 * Include Twenty Twenty specific files.
15 */
16 if ( 'twentytwenty' === get_template() ) {
17 require_once TWENTIG_PATH . 'inc/twentytwenty/index.php';
18 require_once TWENTIG_PATH . 'inc/twentytwenty/font.php';
19 require_once TWENTIG_PATH . 'inc/twentytwenty/color.php';
20 require_once TWENTIG_PATH . 'inc/twentytwenty/header.php';
21 require_once TWENTIG_PATH . 'inc/twentytwenty/footer.php';
22 require_once TWENTIG_PATH . 'inc/twentytwenty/blog.php';
23 require_once TWENTIG_PATH . 'inc/twentytwenty/404.php';
24 require_once TWENTIG_PATH . 'inc/twentytwenty/page-templater.php';
25 }
26