wp_interactivity_get_context()WP 6.6.0

Gets the current Interactivity API context for a given namespace.

The function should be used only during directive processing. If the $store_namespace parameter is omitted, it uses the current namespace value on the internal namespace stack.

It returns an empty array when the specified namespace is not defined.

No Hooks.

Returns

Array. The context for the specified store namespace.

Usage

wp_interactivity_get_context( ?string $store_namespace ): array;
?string $store_namespace **
-
Default: null

Changelog

Since 6.6.0 Introduced.

wp_interactivity_get_context() code WP 6.8.1

function wp_interactivity_get_context( ?string $store_namespace = null ): array {
	return wp_interactivity()->get_context( $store_namespace );
}