Skip to content

Instantly share code, notes, and snippets.

@cheh
Forked from kovshenin/plugin.php
Created January 22, 2014 12:09
Show Gist options
  • Save cheh/8557674 to your computer and use it in GitHub Desktop.
Save cheh/8557674 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