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
|
|
function wporg_get_global_header() { |
201 | 201 | |
202 | 202 | function wporg_support_bbp_raw_title( $title ) { |
203 | 203 | if ( get_query_var( 'paged' ) && ! is_404() ) { |
204 | | $title .= sprintf( ' - page %s', get_query_var( 'paged' ) ); |
| 204 | global $wp_query; |
| 205 | $title .= sprintf( ' Page %s of %s ', get_query_var( 'paged' ), $wp_query->max_num_pages ); |
205 | 206 | } |
206 | 207 | |
207 | 208 | return $title; |