wpsc_delete_plugin()
Хуков нет.
Возвращает
null
. Ничего.
Использование
wpsc_delete_plugin( $file );
- $file (обязательный)
- -
Код wpsc_delete_plugin() wpsc delete plugin WPSCache 1.9.4
function wpsc_delete_plugin( $file ) { global $wpsc_plugins; if ( substr( $file, 0, strlen( ABSPATH ) ) == ABSPATH ) { $file = substr( $file, strlen( ABSPATH ) ); // remove ABSPATH } if ( isset( $wpsc_plugins ) && is_array( $wpsc_plugins ) && in_array( $file, $wpsc_plugins ) ) { unset( $wpsc_plugins[ array_search( $file, $wpsc_plugins ) ] ); wp_cache_setting( 'wpsc_plugins', $wpsc_plugins ); } return $file; }