Skip to content

Instantly share code, notes, and snippets.

@kovshenin
Created April 2, 2013 13:26
Show Gist options
  • Save kovshenin/5292180 to your computer and use it in GitHub Desktop.
Save kovshenin/5292180 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Hide Akismet
*/
add_filter( 'all_plugins', function( $plugins ) {
unset( $plugins['akismet/akismet.php'] );
return $plugins;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment