WP_Hook::offsetGet()
[ReturnTypeWillChange]{} It's a method of the class: WP_Hook{}
No Hooks.
Return
null
. Nothing.
Usage
$WP_Hook = new WP_Hook(); $WP_Hook->offsetGet( $offset );
- $offset (required)
- -
Code of WP_Hook::offsetGet() WP Hook::offsetGet WP 6.0
public function offsetGet( $offset ) { return isset( $this->callbacks[ $offset ] ) ? $this->callbacks[ $offset ] : null; }