Un-register an item or items.
Parameters
$handles
string|string[]required- Item handle (string) or item handles (array of strings).
Source
public function remove( $handles ) {
foreach ( (array) $handles as $handle ) {
unset( $this->registered[ $handle ] );
}
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.