diff --git a/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/functions.php b/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/functions.php
index e16931c25..e88b5e66b 100644
--- a/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/functions.php
+++ b/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/functions.php
@@ -252,6 +252,16 @@ function widgets_init() {
 
 	register_sidebar( array(
 		'name'          => __( 'Landing Page Footer - Center', 'wporg' ),
+		'id'            => 'landing-footer-3',
+		'description'   => __( 'Appears in footer of the primary landing page', 'wporg' ),
+		'before_widget' => '<div id="%1$s" class="widget box %2$s">',
+		'after_widget'  => '</div>',
+		'before_title'  => '<h4 class="widget-title">',
+		'after_title'   => '</h4>',
+	) );
+
+	register_sidebar( array(
+		'name'          => __( 'Landing Page Footer - Right', 'wporg' ),
 		'id'            => 'landing-footer-2',
 		'description'   => __( 'Appears in footer of the primary landing page', 'wporg' ),
 		'before_widget' => '<div id="%1$s" class="widget box %2$s">',
diff --git a/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/page-home-landing.php b/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/page-home-landing.php
index 5e3262af0..35904dce5 100644
--- a/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/page-home-landing.php
+++ b/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/page-home-landing.php
@@ -73,12 +73,17 @@ get_header(); ?>
 					<div class=" box"></div>
 				<?php } ?>
 
-				<div class="box">
-					<h3 class="widget-title"><?php _e( 'Contribute', 'wporg' ); ?></h3>
-					<ul class="unordered-list no-bullets">
-						<li><a href="https://make.wordpress.org/" class="make-wp-link"><?php _e( 'Help Make WordPress', 'wporg' ); ?></a></li>
-					</ul>
-				</div>
+				<?php if ( is_active_sidebar( 'landing-footer-3') ) { ?>
+					<?php dynamic_sidebar( 'landing-footer-3' ); ?>
+				<?php } else { ?>
+                    <div class="box">
+                        <h3 class="widget-title"><?php _e( 'Contribute', 'wporg' ); ?></h3>
+                        <ul class="unordered-list no-bullets">
+                            <li><a href="https://make.wordpress.org/" class="make-wp-link"><?php _e( 'Help Make WordPress', 'wporg' ); ?></a></li>
+                        </ul>
+                    </div>
+				<?php } ?>
+
 
 				<?php if ( is_active_sidebar( 'landing-footer-2') ) { ?>
 					<?php dynamic_sidebar( 'landing-footer-2' ); ?>
