Index: wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-directory-compat.php
===================================================================
--- wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-directory-compat.php	(revision 14219)
+++ wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-directory-compat.php	(working copy)
@@ -301,6 +301,7 @@
 			// Add output filters and actions.
 			add_filter( 'bbp_get_view_link', array( $this, 'get_view_link' ), 10, 2 );
 			add_filter( 'bbp_breadcrumbs',   array( $this, 'breadcrumbs' ) );
+			add_filter( 'bbp_get_breadcrumb', array( $this, 'add_my_topics_link' ) );
 
 			// Handle new topic form at the bottom of support view.
 			add_action( 'wporg_compat_after_single_view',      array( $this, 'add_topic_form' ) );
@@ -713,6 +714,33 @@
 	}
 
 	/**
+	 * Add "My Topics" link to the breadcrumbs.
+	 */
+	public function add_my_topics_link( $r ) {
+		if ( ! bbp_is_single_view() ) {
+			return $r;
+		}
+
+		$view = bbp_get_view_id();
+		if ( ! in_array( $view, $this->compat_views() ) ) {
+			return $r;
+		}
+
+		// Add "My Topics" link after "Reviews"
+		if ( 'reviews' == $view ) {
+			$current_user = wp_get_current_user();
+			$my_topics_url = esc_url( 'https://wordpress.org/support/users/' . $current_user->user_nicename . '/topics/' );
+			$r[] = sprintf(
+				'<a href="%s" class="bbp-breadcrumb-forum">%s</a>',
+				$my_topics_url,
+				__( 'My Topics', 'wporg-forums' )
+			);
+		}
+
+		return $r;
+	}
+
+	/**
 	 * Add the new topic form at the bottom of appropriate views; the reviews view
 	 * form addition is handled by Ratings_Compat.
 	 */
