<?php /** * Gravity Perks // Hide Perks from Plugins Page * https://gravitywiz.com/documentation/ */ add_filter( 'all_plugins', function( $plugins ) { if ( ! is_callable( 'get_current_screen' ) || get_current_screen()->id !== 'plugins' ) { return $plugins; } $filtered_plugins = array(); foreach ( $plugins as $slug => $plugin ) { if ( ! wp_validate_boolean( rgar( $plugin, 'Perk' ) ) ) { $filtered_plugins[ $slug ] = $plugin; } } return $filtered_plugins; } );
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter