diff --git a/src/wp-admin/includes/dashboard.php b/src/wp-admin/includes/dashboard.php
index 1754832ac5..90514f0d3d 100644
--- a/src/wp-admin/includes/dashboard.php
+++ b/src/wp-admin/includes/dashboard.php
@@ -90,6 +90,7 @@ function wp_dashboard_setup() {
 
 	// WordPress Events and News.
 	wp_add_dashboard_widget( 'dashboard_primary', __( 'WordPress Events and News' ), 'wp_dashboard_events_news' );
+	wp_add_dashboard_widget( 'dashboard_learn_wordpress', __( 'Learn WordPress' ), 'wp_dashboard_learn_wordpress' );
 
 	if ( is_network_admin() ) {
 
@@ -211,7 +212,7 @@ function wp_add_dashboard_widget( $widget_id, $widget_name, $callback, $control_
 		}
 	}
 
-	$side_widgets = array( 'dashboard_quick_press', 'dashboard_primary' );
+	$side_widgets = array( 'dashboard_quick_press', 'dashboard_primary', 'dashboard_learn_wordpress' );
 
 	if ( in_array( $widget_id, $side_widgets, true ) ) {
 		$context = 'side';
@@ -1334,6 +1335,76 @@ function wp_dashboard_events_news() {
 	<?php
 }
 
+/**
+ * Renders the Learn dashboard widget.
+ *
+ * @since x.x.x
+ */
+function wp_dashboard_learn_wordpress() {
+		echo __( 'Latest courses from Learn WordPress' );
+	?>
+
+	<?php
+		wp_widget_rss_output(
+			'https://learn.wordpress.org/courses/feed/',
+			array(
+				'show_summary' => 0,
+				'items'        => 5,
+			)
+		);
+	?>
+
+	<p class="community-events-footer">
+		<?php
+			printf(
+				'<a href="%1$s" target="_blank">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>',
+				'https://learn.wordpress.org/tutorials/',
+				__( 'Tutorials' ),
+				/* translators: Hidden accessibility text. */
+				__( '(opens in a new tab)' )
+			);
+		?>
+
+		|
+
+		<?php
+			printf(
+				'<a href="%1$s" target="_blank">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>',
+				'https://learn.wordpress.org/online-workshops/',
+				__( 'Workshops' ),
+				/* translators: Hidden accessibility text. */
+				__( '(opens in a new tab)' )
+			);
+		?>
+
+		|
+
+		<?php
+			printf(
+				'<a href="%1$s" target="_blank">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>',
+				'https://learn.wordpress.org/courses/',
+				__( 'Courses' ),
+				/* translators: Hidden accessibility text. */
+				__( '(opens in a new tab)' )
+			);
+		?>
+
+		|
+
+		<?php
+			printf(
+				'<a href="%1$s" target="_blank">%2$s <span class="screen-reader-text">%3$s</span><span aria-hidden="true" class="dashicons dashicons-external"></span></a>',
+				'https://learn.wordpress.org/lesson-plans/',
+				__( 'Lesson Plans' ),
+				/* translators: Hidden accessibility text. */
+				__( '(opens in a new tab)' )
+			);
+		?>
+	</p>
+
+	<?php
+}
+
 /**
  * Prints the markup for the Community Events section of the Events and News Dashboard widget.
  *
