wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



plugin_sandbox_scrape › WordPress Function

Od3.0.0
Przestarzałyn/a
plugin_sandbox_scrape ( $plugin )
Parametry:
  • (string) $plugin Path to the plugin file relative to the plugins directory.
    Wymagane: Tak
Zdefiniowane na:
Codex:
Dziennik zmian:
  • 4.4.0

Loads a given plugin attempt to generate errors.



Źródło

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