Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inserter: Update categories for theme blocks #37723

Merged
merged 1 commit into from
Jan 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/reference-guides/core-blocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ Displays the next or previous post link that is adjacent to the current post.
Contains the block elements used to render a post, like the title, date, featured image, content or excerpt, and more.

- **Name:** core/post-template
- **Category:** design
- **Category:** theme
- **Supports:** align, ~~html~~, ~~reusable~~
- **Attributes:**

Expand Down Expand Up @@ -598,7 +598,7 @@ An advanced block that allows displaying post types based on different query par
Displays a paginated navigation to next/previous set of posts, when applicable.

- **Name:** core/query-pagination
- **Category:** design
- **Category:** theme
- **Supports:** align, color (background, gradients, link, text), ~~html~~, ~~reusable~~
- **Attributes:** paginationArrow

Expand All @@ -607,7 +607,7 @@ Displays a paginated navigation to next/previous set of posts, when applicable.
Displays the next posts page link.

- **Name:** core/query-pagination-next
- **Category:** design
- **Category:** theme
- **Supports:** color (background, gradients, ~~text~~), typography (fontSize, lineHeight), ~~html~~, ~~reusable~~
- **Attributes:** label

Expand All @@ -616,7 +616,7 @@ Displays the next posts page link.
Displays a list of page numbers for pagination

- **Name:** core/query-pagination-numbers
- **Category:** design
- **Category:** theme
- **Supports:** ~~html~~, ~~reusable~~
- **Attributes:**

Expand All @@ -625,7 +625,7 @@ Displays a list of page numbers for pagination
Displays the previous posts page link.

- **Name:** core/query-pagination-previous
- **Category:** design
- **Category:** theme
- **Supports:** color (background, gradients, ~~text~~), typography (fontSize, lineHeight), ~~html~~, ~~reusable~~
- **Attributes:** label

Expand Down
2 changes: 1 addition & 1 deletion packages/block-library/src/post-template/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"apiVersion": 2,
"name": "core/post-template",
"title": "Post Template",
"category": "design",
"category": "theme",
"parent": [ "core/query" ],
"description": "Contains the block elements used to render a post, like the title, date, featured image, content or excerpt, and more.",
"textdomain": "default",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"apiVersion": 2,
"name": "core/query-pagination-next",
"title": "Next Page",
"category": "design",
"category": "theme",
"parent": [ "core/query-pagination" ],
"description": "Displays the next posts page link.",
"textdomain": "default",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"apiVersion": 2,
"name": "core/query-pagination-numbers",
"title": "Page Numbers",
"category": "design",
"category": "theme",
"parent": [ "core/query-pagination" ],
"description": "Displays a list of page numbers for pagination",
"textdomain": "default",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"apiVersion": 2,
"name": "core/query-pagination-previous",
"title": "Previous Page",
"category": "design",
"category": "theme",
"parent": [ "core/query-pagination" ],
"description": "Displays the previous posts page link.",
"textdomain": "default",
Expand Down
2 changes: 1 addition & 1 deletion packages/block-library/src/query-pagination/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"apiVersion": 2,
"name": "core/query-pagination",
"title": "Pagination",
"category": "design",
"category": "theme",
"parent": [ "core/query" ],
"description": "Displays a paginated navigation to next/previous set of posts, when applicable.",
"textdomain": "default",
Expand Down