Changeset 8082 for sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-performance-optimizations.php
- Timestamp:
- 01/15/2019 03:54:51 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-performance-optimizations.php
r8050 r8082 45 45 // Disable canonical redirects for short post_names 46 46 add_filter( 'template_redirect', array( $this, 'maybe_disable_404_canonical' ), 9 ); 47 48 // Disable the 'popular' view. 49 add_filter( 'bbp_register_views', array( $this, 'disable_popular_view' ) ); 47 50 48 51 } … … 426 429 return $bound_id; 427 430 } 431 432 /** 433 * Deregister the 'popular' view as it doesn't make sense on the Global Forums from a performance perspective. 434 */ 435 public function disable_popular_view() { 436 bbp_deregister_view( 'popular' ); 437 } 428 438 }
Note: See TracChangeset
for help on using the changeset viewer.