plugin_sandbox_scrape( string $plugin )

In this article

Loads a given plugin attempt to generate errors.

Parameters

$pluginstringrequired
Path to the plugin file relative to the plugins directory.

Source

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;
}

Changelog

VersionDescription
4.4.0Function was moved into the wp-admin/includes/plugin.php file.
3.0.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.