PluginProbe
Create Block Theme / v1.3.2
Create Block Theme vv1.3.2
2.10.1 trunk 0.1.2.1 1.0.0 1.0.1 1.1.0 1.1.1 1.1.2 1.1.3 1.10.0 1.11.0 1.12.0 1.12.1 1.13.0 1.13.1 1.13.2 1.13.3 1.13.4 1.13.5 1.13.6 1.13.7 1.13.8 1.2.0 1.2.2 1.2.3 All 65 releases
create-block-theme / create-block-theme.php

create-block-theme.php in Create Block Theme v1.3.2, at create-block-theme.php

42 lines 946 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * @wordpress-plugin
5 * Plugin Name: Create Block Theme
6 * Plugin URI: https://wordpress.org/plugins/create-block-theme
7 * Description: Generates a block theme
8 * Version: 1.2.3
9 * Author: WordPress.org
10 * Author URI: https://wordpress.org/
11 * License: GNU General Public License v2 or later
12 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
13 * Text Domain: create-block-theme
14 */
15
16 // If this file is called directly, abort.
17 if ( ! defined( 'WPINC' ) ) {
18 die;
19 }
20
21 /**
22 * The core plugin class.
23 */
24 require plugin_dir_path( __FILE__ ) . 'includes/class-create-block-theme.php';
25
26 /**
27 * Begins execution of the plugin.
28 *
29 * Since everything within the plugin is registered via hooks,
30 * then kicking off the plugin from this point in the file does
31 * not affect the page life cycle.
32 *
33 * @since 0.0.2
34 */
35 function run_create_block_theme() {
36
37 $plugin = new Create_Block_Theme();
38 $plugin->run();
39
40 }
41 run_create_block_theme();
42