WP_Dependencies::remove( mixed $handles )
Un-register an item or items.
Parameters
- $handles
-
(Required) Item handle and argument (string) or item handles and arguments (array of strings).
Return
(void)
Source
File: wp-includes/class.wp-dependencies.php
public function remove( $handles ) {
foreach ( (array) $handles as $handle )
unset($this->registered[$handle]);
}
Changelog
Version | Description |
---|---|
WP-2.6.0 | Moved from WP_Scripts . |
WP-2.1.0 | Introduced. |