Changeset 11313
- Timestamp:
- 11/04/2021 11:50:54 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-hooks.php
r11062 r11313 346 346 347 347 /** 348 * Redirect the defunct plugin 'ask-question'to the how to / troubleshooting forum348 * Redirect some problematic defunct plugin support forums to the how to / troubleshooting forum 349 349 * as it's a better destination for the users reaching the plugin forum from search engines. 350 350 */ … … 352 352 if ( 353 353 'plugin' === get_query_var( 'bbp_view' ) && 354 'ask-question' === get_query_var( 'wporg_plugin')354 in_array( get_query_var( 'wporg_plugin' ), array( 'ask-question', 'technical-support' ) ) 355 355 ) { 356 356 wp_safe_redirect( home_url( '/forum/how-to-and-troubleshooting/' ) );
Note: See TracChangeset
for help on using the changeset viewer.