Changeset 9535
- Timestamp:
- 02/24/2020 11:44:33 PM (5 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory/theme-directory.php
r9533 r9535 34 34 include __DIR__ . '/jobs/class-trac-sync.php'; 35 35 new WordPressdotorg\Theme_Directory\Jobs\Manager(); 36 37 define( 'WPORG_THEMES_DEFAULT_BROWSE', 'popular' ); 36 38 37 39 /** … … 1285 1287 $link = false; 1286 1288 1287 if ( get_query_var( 'browse' ) ) { 1289 if ( get_query_var( 'browse' ) && WPORG_THEMES_DEFAULT_BROWSE === get_query_var( 'browse' ) ) { 1290 $link = home_url( '/' ); 1291 } elseif ( get_query_var( 'browse' ) ) { 1288 1292 // The browse/% urls on the Theme directory are front-page-query alterations. 1289 1293 $link = home_url( 'browse/' . get_query_var( 'browse' ) . '/' ); -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/functions.php
r9533 r9535 76 76 ); 77 77 wp_safe_redirect( $url, 301 ); 78 die(); 79 } 80 81 // Redirect /browse/featured/ to the front-page temporarily, as it's showing in Google results. 82 if ( '/themes/browse/featured' === substr( $path, 0, 23 ) ) { 83 wp_safe_redirect( home_url( '/' ), 302 ); 78 84 die(); 79 85 } … … 137 143 'nonce' => is_user_logged_in() ? wp_create_nonce( 'modify-theme-favorite' ) : false, 138 144 ), 139 'browseDefault'=> 'popular',145 'browseDefault'=> WPORG_THEMES_DEFAULT_BROWSE, 140 146 ), 141 147 'l10n' => array(
Note: See TracChangeset
for help on using the changeset viewer.