wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



wp_interactivity_get_context › WordPress Function

Desde6.6.0
Obsoleton/a
wp_interactivity_get_context ( $store_namespace = null )
Parâmetros:
  • (string) $store_namespace Optional. The unique store namespace identifier.
    Required: No
    Padrão: null
Retorna:
  • (array) The context for the specified store namespace.
Definido em:
Codex:

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.


Fonte

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