WP_Hook::offsetUnset( mixed $offset )

Unsets a specified offset.


Description Description


Parameters Parameters

$offset

(mixed) (Required) The offset to unset.


Top ↑

Source Source

File: wp-includes/class-wp-hook.php

	public function offsetUnset( $offset ) {
		unset( $this->callbacks[ $offset ] );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.7.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.