diff --git a/src/wp-content/themes/twentytwentytwo/inc/block-patterns.php b/src/wp-content/themes/twentytwentytwo/inc/block-patterns.php
index ce5e331798..f47e26e5dd 100644
--- a/src/wp-content/themes/twentytwentytwo/inc/block-patterns.php
+++ b/src/wp-content/themes/twentytwentytwo/inc/block-patterns.php
@@ -14,11 +14,11 @@
*/
function twentytwentytwo_register_block_patterns() {
$block_pattern_categories = array(
- 'featured' => array( 'label' => __( 'Featured', 'twentytwentytwo' ) ),
- 'footer' => array( 'label' => __( 'Footers', 'twentytwentytwo' ) ),
- 'header' => array( 'label' => __( 'Headers', 'twentytwentytwo' ) ),
- 'query' => array( 'label' => __( 'Query', 'twentytwentytwo' ) ),
- 'pages' => array( 'label' => __( 'Pages', 'twentytwentytwo' ) ),
+ 'featured' => array( 'label' => __( 'Featured', 'twentytwentytwo' ) ),
+ 'footer' => array( 'label' => __( 'Footers', 'twentytwentytwo' ) ),
+ 'header' => array( 'label' => __( 'Headers', 'twentytwentytwo' ) ),
+ 'query' => array( 'label' => __( 'Query', 'twentytwentytwo' ) ),
+ 'twentytwentytwo_pages' => array( 'label' => __( 'Pages', 'twentytwentytwo' ) ),
);
/**
diff --git a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-large-image-and-buttons.php b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-large-image-and-buttons.php
index 12d44e793b..52dbd0e2eb 100644
--- a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-large-image-and-buttons.php
+++ b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-large-image-and-buttons.php
@@ -4,7 +4,7 @@
*/
return array(
'title' => __( 'About page with large image and buttons', 'twentytwentytwo' ),
- 'categories' => array( 'pages', 'buttons' ),
+ 'categories' => array( 'twentytwentytwo_pages', 'buttons' ),
'content' => '
 ) . '/assets/images/flight-path-on-gray-b.jpg)
diff --git a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links-dark.php b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links-dark.php
index ccb0ec2005..943524f49d 100644
--- a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links-dark.php
+++ b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links-dark.php
@@ -4,7 +4,7 @@
*/
return array(
'title' => __( 'About page links (dark)', 'twentytwentytwo' ),
- 'categories' => array( 'pages', 'buttons' ),
+ 'categories' => array( 'twentytwentytwo_pages', 'buttons' ),
'content' => '
diff --git a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links.php b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links.php
index 997cf03869..3cf27173db 100644
--- a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links.php
+++ b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-links.php
@@ -4,7 +4,7 @@
*/
return array(
'title' => __( 'About page links', 'twentytwentytwo' ),
- 'categories' => array( 'pages', 'buttons' ),
+ 'categories' => array( 'twentytwentytwo_pages', 'buttons' ),
'content' => '
diff --git a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-left.php b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-left.php
index ea805944db..f5c769a6ca 100644
--- a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-left.php
+++ b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-left.php
@@ -4,7 +4,7 @@
*/
return array(
'title' => __( 'About page with media on the left', 'twentytwentytwo' ),
- 'categories' => array( 'pages' ),
+ 'categories' => array( 'twentytwentytwo_pages' ),
'content' => '
 ) . '/assets/images/bird-on-salmon.jpg)
diff --git a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-right.php b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-right.php
index 2493d5d4aa..8f291150e1 100644
--- a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-right.php
+++ b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-media-right.php
@@ -4,7 +4,7 @@
*/
return array(
'title' => __( 'About page with media on the right', 'twentytwentytwo' ),
- 'categories' => array( 'pages' ),
+ 'categories' => array( 'twentytwentytwo_pages' ),
'content' => '
 ) . '/assets/images/bird-on-black.jpg)
diff --git a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-simple-dark.php b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-simple-dark.php
index 131a48b45c..fe07159659 100644
--- a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-simple-dark.php
+++ b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-simple-dark.php
@@ -4,7 +4,7 @@
*/
return array(
'title' => __( 'Simple dark about page', 'twentytwentytwo' ),
- 'categories' => array( 'pages' ),
+ 'categories' => array( 'twentytwentytwo_pages' ),
'content' => '
diff --git a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-solid-color.php b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-solid-color.php
index df8903d9ad..6c07725dba 100644
--- a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-solid-color.php
+++ b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-about-solid-color.php
@@ -4,7 +4,7 @@
*/
return array(
'title' => __( 'About page on solid color background', 'twentytwentytwo' ),
- 'categories' => array( 'pages' ),
+ 'categories' => array( 'twentytwentytwo_pages' ),
'content' => '
diff --git a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-and-text.php b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-and-text.php
index eec6e0d88c..20e08e01ff 100644
--- a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-and-text.php
+++ b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-and-text.php
@@ -4,7 +4,7 @@
*/
return array(
'title' => __( 'Page layout with image and text', 'twentytwentytwo' ),
- 'categories' => array( 'pages' ),
+ 'categories' => array( 'twentytwentytwo_pages' ),
'content' => '
' . wp_kses_post( __( 'Watching Birds
in the Garden', 'twentytwentytwo' ) ) . '
diff --git a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-text-and-video.php b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-text-and-video.php
index bfb4e6e988..0ee87f11ff 100644
--- a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-text-and-video.php
+++ b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-image-text-and-video.php
@@ -4,7 +4,7 @@
*/
return array(
'title' => __( 'Page layout with image, text and video', 'twentytwentytwo' ),
- 'categories' => array( 'pages' ),
+ 'categories' => array( 'twentytwentytwo_pages' ),
'content' => '
diff --git a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-two-columns.php b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-two-columns.php
index 2a27dfe824..b24c9c57dc 100644
--- a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-two-columns.php
+++ b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-layout-two-columns.php
@@ -4,7 +4,7 @@
*/
return array(
'title' => __( 'Page layout with two columns', 'twentytwentytwo' ),
- 'categories' => array( 'pages' ),
+ 'categories' => array( 'twentytwentytwo_pages' ),
'content' => '
' . wp_kses_post( __( 'Goldfinch
& Sparrow', 'twentytwentytwo' ) ) . '
diff --git a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts-right.php b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts-right.php
index 1601925020..070aef04b8 100644
--- a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts-right.php
+++ b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts-right.php
@@ -4,7 +4,7 @@
*/
return array(
'title' => __( 'Blog posts with right sidebar', 'twentytwentytwo' ),
- 'categories' => array( 'pages' ),
+ 'categories' => array( 'twentytwentytwo_pages' ),
'content' => '
diff --git a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts.php b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts.php
index c40b207360..e535a81a76 100644
--- a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts.php
+++ b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-blog-posts.php
@@ -4,7 +4,7 @@
*/
return array(
'title' => __( 'Blog posts with left sidebar', 'twentytwentytwo' ),
- 'categories' => array( 'pages' ),
+ 'categories' => array( 'twentytwentytwo_pages' ),
'content' => '
diff --git a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-grid-posts.php b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-grid-posts.php
index 3a4f037eed..b4aa6a560a 100644
--- a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-grid-posts.php
+++ b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-grid-posts.php
@@ -4,7 +4,7 @@
*/
return array(
'title' => __( 'Grid of posts with left sidebar', 'twentytwentytwo' ),
- 'categories' => array( 'pages' ),
+ 'categories' => array( 'twentytwentytwo_pages' ),
'content' => '
diff --git a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-poster.php b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-poster.php
index bc744b1b83..9cbcef2a7a 100644
--- a/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-poster.php
+++ b/src/wp-content/themes/twentytwentytwo/inc/patterns/page-sidebar-poster.php
@@ -4,7 +4,7 @@
*/
return array(
'title' => __( 'Poster with right sidebar', 'twentytwentytwo' ),
- 'categories' => array( 'pages' ),
+ 'categories' => array( 'twentytwentytwo_pages' ),
'content' => '