Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
home
/
getwphos
/
public_html
/
nycre
/
wp-content
/
plugins
/
meta-box
/
src
/
File Content:
FeaturedPlugins.php
<?php namespace MetaBox; class FeaturedPlugins { public function __construct() { add_filter( 'plugins_api_result', [ $this, 'process' ], 10, 2 ); } public function process( $result, $action ) { global $tab; if ( ! in_array( $tab, [ 'featured', 'recommended' ], true ) ) { return $result; } if ( is_wp_error( $result ) || $action !== 'query_plugins' ) { return $result; } foreach ( $result->plugins as $index => $plugin ) { if ( $plugin['slug'] === 'secure-custom-fields' ) { unset( $result->plugins[ $index ] ); } } return $result; } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
Dashboard
---
0755
Integrations
---
0755
Updater
---
0755
FeaturedPlugins.php
579 bytes
0644
N4ST4R_ID | Naxtarrr