forked from WordPress/gutenberg-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
25 lines (22 loc) · 736 Bytes
/
index.php
File metadata and controls
25 lines (22 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/**
* Plugin Name: Gutenberg Examples
* Plugin URI: https://github.com/WordPress/gutenberg-examples
* Description: This is a plugin demonstrating how to register new blocks for the Gutenberg editor.
* Version: 1.1.0
* Author: the Gutenberg Team
*
* @package gutenberg-examples
*/
defined( 'ABSPATH' ) || exit;
include '01-basic/index.php';
include '01-basic-esnext/index.php';
include '02-stylesheets/index.php';
include '03-editable/index.php';
include '03-editable-esnext/index.php';
include '04-controls/index.php';
include '04-controls-esnext/index.php';
include '05-recipe-card/index.php';
include '05-recipe-card-esnext/index.php';
include '06-inner-blocks/index.php';
include '06-inner-blocks-esnext/index.php';