diff --git wordpress.org/public_html/wp-content/plugins/theme-directory/class-themes-api.php wordpress.org/public_html/wp-content/plugins/theme-directory/class-themes-api.php
index 075daf04a..622b960af 100644
--- wordpress.org/public_html/wp-content/plugins/theme-directory/class-themes-api.php
+++ wordpress.org/public_html/wp-content/plugins/theme-directory/class-themes-api.php
@@ -295,8 +295,10 @@ class Themes_API {
 
 		// Pending https://core.trac.wordpress.org/ticket/46272
 		if ( ! isset( $wp_version ) || version_compare( $wp_version, '5.2-alpha', '>=' ) ) {
-			$tags[ __( 'Layout' ) ]['wide-blocks']    = __( 'Wide Blocks' );
-			$tags[ __( 'Features' ) ]['block-styles'] = __( 'Block Editor Styles' );
+			$tags[ __( 'Layout' ) ]['wide-blocks']         = __( 'Wide Blocks' );
+			$tags[ __( 'Features' ) ]['block-styles']      = __( 'Block Editor Styles' );
+			$tags[ __( 'Features' ) ]['block-patterns']    = __( 'Block Editor Patterns' );
+			$tags[ __( 'Features' ) ]['full-site-editing'] = __( 'Full Site Editing Feature' );
 			asort( $tags[ __( 'Features' ) ] ); // To move block-styles to the right place.
 		}
 
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php
index c69069485..a52d3dd5d 100644
--- wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php
+++ wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php
@@ -335,6 +335,7 @@ function wporg_themes_get_feature_list( $include = 'active' ) {
 			),
 			__( 'Features', 'wporg-themes' ) => array(
 				'accessibility-ready'   => __( 'Accessibility Ready', 'wporg-themes' ),
+				'block-patterns'        => __( 'Block Editor Patterns', 'wporg-themes' ),
 				'block-styles'          => __( 'Block Editor Styles', 'wporg-themes' ),
 				'buddypress'            => __( 'BuddyPress', 'wporg-themes' ),
 				'custom-background'     => __( 'Custom Background', 'wporg-themes' ),
@@ -348,6 +349,7 @@ function wporg_themes_get_feature_list( $include = 'active' ) {
 				'flexible-header'       => __( 'Flexible Header', 'wporg-themes' ),
 				'footer-widgets'        => __( 'Footer Widgets', 'wporg-themes' ),
 				'front-page-post-form'  => __( 'Front Page Posting', 'wporg-themes' ),
+				'full-site-editing'     => __( 'Full Site Editing Feature', 'wporg-themes' ),
 				'full-width-template'   => __( 'Full Width Template', 'wporg-themes' ),
 				'microformats'          => __( 'Microformats', 'wporg-themes' ),
 				'post-formats'          => __( 'Post Formats', 'wporg-themes' ),
