From cdc57f310030a34e1cb13b2257c86921fa43ab1c Mon Sep 17 00:00:00 2001 From: Wes DeKoninck Date: Thu, 6 Dec 2018 15:02:47 -0500 Subject: [PATCH] Add Gutenberg editor info to WordPress guide (#25878) * Add WP Gutenberg info to WP Guide * Update block boilerplate link --- guide/english/wordpress/gutenberg/index.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 guide/english/wordpress/gutenberg/index.md diff --git a/guide/english/wordpress/gutenberg/index.md b/guide/english/wordpress/gutenberg/index.md new file mode 100644 index 00000000000..4b8fcd9687f --- /dev/null +++ b/guide/english/wordpress/gutenberg/index.md @@ -0,0 +1,22 @@ +--- +title: WordPress Gutenberg Editor +--- + +# WordPress Gutenberg Editor + +The WordPress team is introducing a new editing experience beginning with v5.0 of the WordPress CMS. Unlike the previous Classic Editor, the Gutenberg editor bring a new block based editing system to the game. The functionality ships with many standard blocks that can be used to created and edit custom pages, but the system is extensible through the development of custom blocks. Learn more about the new editing experience using the link below. + +Official Site: [https://wordpress.org/gutenberg/](https://wordpress.org/gutenberg/) + +## Block Boilerplate + +Developer [Ahmad Awais](https://ahmadawais.com/) has developed a boilerplate and startup toolkit that can be used to help spin up your own custom Gutenberg blocks. You can learn more about this toolkit in Ahmad's Github repo here: [https://github.com/ahmadawais/create-guten-block](https://github.com/ahmadawais/create-guten-block) + +## Block Libraries + +Several authors have begun creating block libraries that will allow you to quickly expand the block selection available in the editor. Here are a few: + +- Advanced Gutenberg Blocks:[https://wordpress.org/plugins/advanced-gutenberg-blocks/](https://wordpress.org/plugins/advanced-gutenberg-blocks/) +- Atomic Blocks:[https://wordpress.org/plugins/atomic-blocks/](https://wordpress.org/plugins/atomic-blocks/) +- Editor Blocks: [https://wordpress.org/plugins/editor-blocks/](https://wordpress.org/plugins/editor-blocks/) +- Stag Blocks: [https://wordpress.org/plugins/stag-blocks/](https://wordpress.org/plugins/stag-blocks/)