plugin_sandbox_scrape()
Loads a given plugin attempt to generate errors.
No Hooks.
Return
null
. Nothing (null).
Usage
plugin_sandbox_scrape( $plugin );
- $plugin(string) (required)
- Path to the plugin file relative to the plugins directory.
Changelog
Since 3.0.0 | Introduced. |
Since 4.4.0 | Function was moved into the wp-admin/includes/plugin.php file. |
plugin_sandbox_scrape() plugin sandbox scrape code WP 6.8
function plugin_sandbox_scrape( $plugin ) { if ( ! defined( 'WP_SANDBOX_SCRAPING' ) ) { define( 'WP_SANDBOX_SCRAPING', true ); } wp_register_plugin_realpath( WP_PLUGIN_DIR . '/' . $plugin ); include_once WP_PLUGIN_DIR . '/' . $plugin; }