Remove plugin entries from the list on the WordPress Plugins page.
<?php
function ccd_remove_plugin_entries( $plugins ) {
// Get plugin page URLs from the activate/deactivate links
$hidden = array(
'jetpack/jetpack.php',
'beaver-builder/fl-builder.php'
);
if ( isset( $_GET['showall'] ) && $_GET['showall'] == '1' ) {
return $plugins;
}
foreach ( $hidden as $filename ) {
unset( $plugins[ $filename ] );
}
return $plugins;
}
add_filter( 'all_plugins', 'ccd_remove_plugin_entries' );
?>
WordPress Snippet