diff --git a/src/wp-content/themes/twentytwenty/footer.php b/src/wp-content/themes/twentytwenty/footer.php
index afe204b629..d1aa6db962 100644
--- a/src/wp-content/themes/twentytwenty/footer.php
+++ b/src/wp-content/themes/twentytwenty/footer.php
@@ -28,6 +28,12 @@
 							<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a>
 						</p><!-- .footer-copyright -->
 
+						<?php
+						if ( function_exists( 'the_privacy_policy_link' ) ) {
+							the_privacy_policy_link( '<p class="privacy-policy">', '</p>' );
+						}
+						?>
+
 						<p class="powered-by-wordpress">
 							<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentytwenty' ) ); ?>">
 								<?php _e( 'Powered by WordPress', 'twentytwenty' ); ?>
diff --git a/src/wp-content/themes/twentytwenty/style.css b/src/wp-content/themes/twentytwenty/style.css
index f6d5d9ec92..1bf8e542db 100644
--- a/src/wp-content/themes/twentytwenty/style.css
+++ b/src/wp-content/themes/twentytwenty/style.css
@@ -4490,10 +4490,12 @@ ul.footer-social li {
 }
 
 .footer-copyright a,
+.privacy-policy a,
 .powered-by-wordpress a {
 	color: inherit;
 }
 
+.privacy-policy,
 .powered-by-wordpress,
 .to-the-top {
 	color: #6d6d6d;
@@ -4508,7 +4510,8 @@ a.to-the-top > * {
 	margin: 0;
 }
 
-.powered-by-wordpress {
+.powered-by-wordpress,
+.privacy-policy {
 	display: none;
 	margin: 0 0 0 2.4rem;
 }
@@ -5630,6 +5633,7 @@ a.to-the-top > * {
 		font-weight: 700;
 	}
 
+	.privacy-policy,
 	.powered-by-wordpress {
 		display: block;
 	}
diff --git a/src/wp-content/themes/twentytwentyone/footer.php b/src/wp-content/themes/twentytwentyone/footer.php
index 63ecd99ac0..da1b09b2c8 100644
--- a/src/wp-content/themes/twentytwentyone/footer.php
+++ b/src/wp-content/themes/twentytwentyone/footer.php
@@ -38,32 +38,12 @@
 					?>
 				</ul><!-- .footer-navigation-wrapper -->
 			</nav><!-- .footer-navigation -->
-		<?php endif; ?>
-		<div class="site-info">
-			<div class="site-name">
-				<?php if ( has_custom_logo() ) : ?>
-					<div class="site-logo"><?php the_custom_logo(); ?></div>
-				<?php else : ?>
-					<?php if ( get_bloginfo( 'name' ) && get_theme_mod( 'display_title_and_tagline', true ) ) : ?>
-						<?php if ( is_front_page() && ! is_paged() ) : ?>
-							<?php bloginfo( 'name' ); ?>
-						<?php else : ?>
-							<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a>
-						<?php endif; ?>
-					<?php endif; ?>
-				<?php endif; ?>
-			</div><!-- .site-name -->
-			<div class="powered-by">
-				<?php
-				printf(
-					/* translators: %s: WordPress. */
-					esc_html__( 'Proudly powered by %s.', 'twentytwentyone' ),
-					'<a href="' . esc_url( __( 'https://wordpress.org/', 'twentytwentyone' ) ) . '">WordPress</a>'
-				);
-				?>
-			</div><!-- .powered-by -->
+			<?php
+		endif;
+
+		get_template_part( 'template-parts/footer/site', 'info' );
+		?>
 
-		</div><!-- .site-info -->
 	</footer><!-- #colophon -->
 
 </div><!-- #page -->
diff --git a/src/wp-content/themes/twentytwentyone/style.css b/src/wp-content/themes/twentytwentyone/style.css
index 6dcc4045d9..98c38b1887 100644
--- a/src/wp-content/themes/twentytwentyone/style.css
+++ b/src/wp-content/themes/twentytwentyone/style.css
@@ -3974,6 +3974,12 @@ table.wp-calendar-table caption {
 .site-footer > .site-info .powered-by {
 	margin-top: calc(0.5 * var(--global--spacing-vertical));
 }
+
+.site-footer > .site-info .privacy-policy-link {
+	margin-top: calc(0.5 * var(--global--spacing-vertical));
+	margin-right: 10px;
+}
+
 @media only screen and (min-width: 822px) {
 
 	.site-footer > .site-info {
diff --git a/src/wp-content/themes/twentytwentyone/template-parts/footer/site-info.php b/src/wp-content/themes/twentytwentyone/template-parts/footer/site-info.php
new file mode 100644
index 0000000000..a448d62330
--- /dev/null
+++ b/src/wp-content/themes/twentytwentyone/template-parts/footer/site-info.php
@@ -0,0 +1,44 @@
+<?php
+/**
+ * Displays footer site info
+ *
+ * @package WordPress
+ * @subpackage Twenty_Twenty_One
+ * @since Twenty Twenty One 1.5
+ * @version 1.5
+ */
+
+?>
+<div class="site-info">
+	<div class="site-name">
+		<?php if ( has_custom_logo() ) : ?>
+			<div class="site-logo"><?php the_custom_logo(); ?></div>
+		<?php else : ?>
+			<?php if ( get_bloginfo( 'name' ) && get_theme_mod( 'display_title_and_tagline', true ) ) : ?>
+				<?php if ( is_front_page() && ! is_paged() ) : ?>
+					<?php bloginfo( 'name' ); ?>
+				<?php else : ?>
+					<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a>
+				<?php endif; ?>
+			<?php endif; ?>
+		<?php endif; ?>
+	</div><!-- .site-name -->
+
+	<div class="powered-by">
+
+		<?php
+		if ( function_exists( 'the_privacy_policy_link' ) ) {
+			the_privacy_policy_link();
+		}
+		?>
+
+		<?php
+		printf(
+			/* translators: %s: WordPress. */
+			esc_html__( 'Proudly powered by %s.', 'twentytwentyone' ),
+			'<a href="' . esc_url( __( 'https://wordpress.org/', 'twentytwentyone' ) ) . '">WordPress</a>'
+		);
+		?>
+	</div><!-- .powered-by -->
+
+</div><!-- .site-info -->
