WP_Hook::offsetExists( mixed $offset )

Determines whether an offset value exists.


Description


Parameters

$offset

(mixed) (Required) An offset to check for.


Top ↑

Return

(bool) True if the offset exists, false otherwise.


Top ↑

Source

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

	public function offsetExists( $offset ) {
		return isset( $this->callbacks[ $offset ] );
	}

Top ↑

Changelog

Version Description
4.7.0 Introduced.