From e499ed0cca13c189c98da504958ef1061830d11b Mon Sep 17 00:00:00 2001 From: ntsekouras Date: Wed, 5 Oct 2022 12:09:46 +0300 Subject: [PATCH] [Documentation]: Connect extend Query Loop documentation --- docs/how-to-guides/README.md | 2 ++ docs/manifest.json | 6 ++++++ docs/toc.json | 3 +++ 3 files changed, 11 insertions(+) diff --git a/docs/how-to-guides/README.md b/docs/how-to-guides/README.md index 0f50bedf05579a..c0a2bd7f1fe6f8 100644 --- a/docs/how-to-guides/README.md +++ b/docs/how-to-guides/README.md @@ -14,6 +14,8 @@ It is also possible to modify the behavior of existing blocks or even remove the Learn more in the [Block Filters](/docs/reference-guides/filters/block-filters.md) section. +Specifically for `Query Loop` block, besides the available filters, there are more ways to extend it and create bespoke versions of it. Learn more in the [Extending the Query Loop block](/docs/how-to-guides/block-tutorial/extending-the-query-loop-block.md) section. + ## Extending the Editor UI Extending the editor UI can be accomplished with the `registerPlugin` API, allowing you to define all your plugin's UI elements in one place. diff --git a/docs/manifest.json b/docs/manifest.json index fa66c97044e1c4..966202ccd48f94 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -155,6 +155,12 @@ "markdown_source": "../docs/how-to-guides/block-tutorial/nested-blocks-inner-blocks.md", "parent": "block-tutorial" }, + { + "title": "Extending the Query Loop block", + "slug": "extending-the-query-loop-block", + "markdown_source": "../docs/how-to-guides/block-tutorial/extending-the-query-loop-block.md", + "parent": "block-tutorial" + }, { "title": "Development Platform", "slug": "platform", diff --git a/docs/toc.json b/docs/toc.json index 0327ebca199de5..532e6ef2d20e1d 100644 --- a/docs/toc.json +++ b/docs/toc.json @@ -71,6 +71,9 @@ }, { "docs/how-to-guides/block-tutorial/nested-blocks-inner-blocks.md": [] + }, + { + "docs/how-to-guides/block-tutorial/extending-the-query-loop-block.md": [] } ] },