diff --git a/docs/README.md b/docs/README.md index 77f8fa7d088e9..d04df59e95752 100644 --- a/docs/README.md +++ b/docs/README.md @@ -29,7 +29,7 @@ This handbook is focused on block development and is divided into five sections, **[Getting Started](https://developer.wordpress.org/block-editor/getting-started/)** -For those just starting out with block development this is where you can get set up with a [development environment](https://developer.wordpress.org/block-editor/getting-started/devenv/) and learn the [fundamentals of block development](https://developer.wordpress.org/block-editor/getting-started/create-block/). +For those just starting out with block development this is where you can get set up with a [development environment](https://developer.wordpress.org/block-editor/getting-started/devenv/) and learn the [fundamentals of block development](https://developer.wordpress.org/block-editor/getting-started/create-block/). Its [Glossary of terms](https://developer.wordpress.org/block-editor/getting-started/glossary/) and [FAQs](https://developer.wordpress.org/block-editor/getting-started/faq/) should answer any outstanding questions you may have. **[How-to Guides](https://developer.wordpress.org/block-editor/how-to-guides/)** @@ -44,8 +44,7 @@ This section is the heart of the handbook and is where you can get down to the n **[Explanations](https://developer.wordpress.org/block-editor/explanations/)** -This section enables you to go deeper and reinforce your practical knowledge with a theoretical understanding of the [Architecture](https://developer.wordpress.org/block-editor/explanations/architecture/) of the block editor. Its [Glossary of terms](https://developer.wordpress.org/block-editor/explanations/glossary/) and [FAQs](https://developer.wordpress.org/block-editor/getting-started/faq/) should answer any outstanding questions you may have. - +This section enables you to go deeper and reinforce your practical knowledge with a theoretical understanding of the [Architecture](https://developer.wordpress.org/block-editor/explanations/architecture/) of the block editor. **[Contributor Guide](https://developer.wordpress.org/block-editor/contributors/)** diff --git a/docs/contributors/design/reference.md b/docs/contributors/design/reference.md index e186998a8fbb8..04e026f60497e 100644 --- a/docs/contributors/design/reference.md +++ b/docs/contributors/design/reference.md @@ -1,6 +1,6 @@ # Reference -- [Glossary](/docs/explanations/glossary.md) +- [Glossary](/docs/getting-started/glossary.md) - [Coding Guidelines](/docs/contributors/code/coding-guidelines.md) - [Testing Overview](/docs/contributors/code/testing-overview.md) - [Frequently Asked Questions](/docs/getting-started/faq.md) diff --git a/docs/getting-started/README.md b/docs/getting-started/README.md index d5ff0fa90760e..649c5095a784d 100644 --- a/docs/getting-started/README.md +++ b/docs/getting-started/README.md @@ -54,7 +54,7 @@ The [WordPress.org Roadmap](https://wordpress.org/about/roadmap/) with Four Phas Checking in on [issues](https://github.com/WordPress/gutenberg/issues) and [PRs](https://github.com/WordPress/gutenberg/pulls) on GitHub. This will give you a nearly real-time understanding of what’s being worked on by the developers and designers. -- [Glossary](/docs/explanations/glossary.md) +- [Glossary](/docs/getting-started/glossary.md) - [Frequently Asked Questions](/docs/getting-started/faq.md) - [Project History](/docs/explanations/history.md) - [Outreach](/docs/getting-started/outreach.md) diff --git a/docs/explanations/glossary.md b/docs/getting-started/glossary.md similarity index 100% rename from docs/explanations/glossary.md rename to docs/getting-started/glossary.md diff --git a/docs/manifest.json b/docs/manifest.json index b428d3c7a0959..f6643182df754 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -83,6 +83,12 @@ "markdown_source": "../docs/getting-started/outreach.md", "parent": "getting-started" }, + { + "title": "Glossary", + "slug": "glossary", + "markdown_source": "../docs/getting-started/glossary.md", + "parent": "getting-started" + }, { "title": "Frequently Asked Questions", "slug": "faq", @@ -2147,12 +2153,6 @@ "markdown_source": "../docs/explanations/user-interface/design-resources.md", "parent": "user-interface" }, - { - "title": "Glossary", - "slug": "glossary", - "markdown_source": "../docs/explanations/glossary.md", - "parent": "explanations" - }, { "title": "History", "slug": "history", diff --git a/docs/toc.json b/docs/toc.json index 10a5b0743f1ef..1bbef72793976 100644 --- a/docs/toc.json +++ b/docs/toc.json @@ -38,6 +38,7 @@ }, { "docs/getting-started/full-site-editing.md": [] }, { "docs/getting-started/outreach.md": [] }, + { "docs/getting-started/glossary.md": [] }, { "docs/getting-started/faq.md": [] } ] }, @@ -325,7 +326,6 @@ } ] }, - { "docs/explanations/glossary.md": [] }, { "docs/explanations/history.md": [] } ] }, diff --git a/packages/block-library/README.md b/packages/block-library/README.md index d75d9a45dcb4d..695e2c935ef60 100644 --- a/packages/block-library/README.md +++ b/packages/block-library/README.md @@ -83,7 +83,7 @@ To find out more about contributing to this package or Gutenberg as a whole, ple } ``` -2. Register the block in the `gutenberg_reregister_core_block_types()` function of the [`lib/blocks.php`](https://github.com/WordPress/gutenberg/blob/trunk/lib/blocks.php) file. Add it to the `block_folders` array if it's a [static block](https://developer.wordpress.org/block-editor/explanations/glossary/#static-block) or to the `block_names` array if it's a [dynamic block](https://developer.wordpress.org/block-editor/explanations/glossary/#dynamic-block). +2. Register the block in the `gutenberg_reregister_core_block_types()` function of the [`lib/blocks.php`](https://github.com/WordPress/gutenberg/blob/trunk/lib/blocks.php) file. Add it to the `block_folders` array if it's a [static block](https://developer.wordpress.org/block-editor/getting-started/glossary/#static-block) or to the `block_names` array if it's a [dynamic block](https://developer.wordpress.org/block-editor/getting-started/glossary/#dynamic-block). 3. Add `init.js` file to the directory of the new block: diff --git a/packages/create-block/README.md b/packages/create-block/README.md index a2d5b31409837..edcdd020caf38 100644 --- a/packages/create-block/README.md +++ b/packages/create-block/README.md @@ -100,7 +100,7 @@ $ npx @wordpress/create-block@latest --template ./path/to/template-directory #### `--variant` -With this argument, `create-block` will generate a [dynamic block](https://developer.wordpress.org/block-editor/explanations/glossary/#dynamic-block) based on the built-in template. +With this argument, `create-block` will generate a [dynamic block](https://developer.wordpress.org/block-editor/getting-started/glossary/#dynamic-block) based on the built-in template. ```bash $ npx @wordpress/create-block@latest --variant dynamic