Skip to content

Instantly share code, notes, and snippets.

@mihdan
Created March 2, 2021 17:14
Show Gist options
  • Save mihdan/dbb12476d5f985f274466c43286cc3d8 to your computer and use it in GitHub Desktop.
Save mihdan/dbb12476d5f985f274466c43286cc3d8 to your computer and use it in GitHub Desktop.
Отключаем Query Monitor на фронте
<?php
add_filter( 'option_active_plugins', static function( $plugins ) {
foreach ( $plugins as $plugin ) {
if ( $plugin === 'query-monitor/query-monitor.php' && wp_get_environment_type() === 'production' ) {
unset( $plugins[ $plugin ] );
}
}
return $plugins;
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment