diff --git wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php
index 673983b2e..5cfd6861c 100644
--- wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php
+++ wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php
@@ -1096,6 +1096,13 @@ class Hooks {
 	public function bbp_raw_title_array( $title ) {
 		if ( bbp_is_single_forum() || bbp_is_single_topic() || bbp_is_single_view() ) {
 			$title['format'] = '%s';
+
+			if( wporg_support_is_single_review() ) {
+				$title['text'] .= sprintf( ' &#45; [%s] %s',
+				wporg_support_get_single_review_title(),
+					__( 'Review', 'wporg-forums' )
+				);
+			}
 		}
 
 		return $title;
diff --git wordpress.org/public_html/wp-content/themes/pub/wporg-support/functions.php wordpress.org/public_html/wp-content/themes/pub/wporg-support/functions.php
index 47a6bb43c..dfd56e350 100644
--- wordpress.org/public_html/wp-content/themes/pub/wporg-support/functions.php
+++ wordpress.org/public_html/wp-content/themes/pub/wporg-support/functions.php
@@ -338,6 +338,22 @@ function wporg_support_is_single_review() {
 	return ( WordPressdotorg\Forums\Plugin::REVIEWS_FORUM_ID == bbp_get_topic_forum_id() );
 }
 
+/**
+ * Get post title for single review
+ *
+ * @return string|bool Returns post title if it exists. Otherwise returns false.
+ */
+function wporg_support_get_single_review_title() {
+	if ( ! class_exists( 'WordPressdotorg\Forums\Plugin' ) || ! bbp_is_single_topic() ) {
+		return false;
+	}
+
+	$plugin_instance = WordPressdotorg\Forums\Plugin::get_instance();
+	$review = $plugin_instance->plugins->plugin ?? $plugin_instance->themes->theme;
+
+	return isset( $review ) ? $review->post_title : false;
+}
+
 /**
  * Check if the current page is a user's "Reviews Written" page.
  *
