wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



plugin_sandbox_scrape › WordPress Function

Seit3.0.0
Veraltetn/v
plugin_sandbox_scrape ( $plugin )
Parameter:
  • (string) $plugin Path to the plugin file relative to the plugins directory.
    Erforderlich: Ja
Definiert in:
Codex:
Changelog:
  • 4.4.0

Loads a given plugin attempt to generate errors.



Quellcode

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