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 742542ead..951d9df94 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
@@ -201,7 +201,8 @@ function wporg_get_global_header() {
 
 function wporg_support_bbp_raw_title( $title ) {
 	if ( get_query_var( 'paged' ) && ! is_404() ) {
-		$title .= sprintf( ' - page %s', get_query_var( 'paged' ) );
+		global $wp_query;
+		$title .= sprintf( ' Page %s of %s ', get_query_var( 'paged' ), $wp_query->max_num_pages );
 	}
 
 	return $title;
