Usage
This function runs automatically, so it is not called manually. Is this incorrect?
Additional Notes
This function currently only deletes the Hello Dolly plugin if it still exists from the original WordPress install.
Source File
Located in /libs/Admin/Automation.php on line 415.
No Hooks
This function does not have any filters or actions available. Request one?
PHP
public function initialization_delete_plugins(){ //Remove Hello Dolly plugin if it exists if ( file_exists(WP_PLUGIN_DIR . '/hello.php') ){ delete_plugins(array('hello.php')); } }
Override
This function can not be short-circuited with an override filter. Request one?