WP_Dependencies::remove( string|string[] $handles )
Un-register an item or items.
Parameters
- $handles
-
(string|string[]) (Required) Item handle (string) or item handles (array of strings).
Source
File: wp-includes/class.wp-dependencies.php
public function remove( $handles ) { foreach ( (array) $handles as $handle ) { unset( $this->registered[ $handle ] ); } }
Expand full source code Collapse full source code View on Trac View on GitHub
Changelog
Version | Description |
---|---|
2.6.0 | Moved from WP_Scripts . |
2.1.0 | Introduced. |