WP_Hook::offsetSet( $offset,  $value )

Source

public function offsetSet( $offset, $value ) {
	if ( is_null( $offset ) ) {
		$this->callbacks[] = $value;
	} else {
		$this->callbacks[ $offset ] = $value;
	}

	$this->priorities = array_keys( $this->callbacks );
}

User Contributed Notes

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