Changeset 9063
- Timestamp:
- 07/19/2019 01:55:43 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support/functions.php
r8943 r9063 193 193 194 194 function wporg_support_bbp_raw_title( $title ) { 195 if ( $page = get_query_var( 'paged') ) {196 $title .= " - page {$page}";195 if ( get_query_var( 'paged' ) && ! is_404() ) { 196 $title .= sprintf( ' - page %s', get_query_var( 'paged' ) ); 197 197 } 198 198
Note: See TracChangeset
for help on using the changeset viewer.