wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_interactivity_state › WordPress Function

Since6.5.0
Deprecatedn/a
wp_interactivity_state ( $store_namespace = null, $state = array() )
Parameters: (2)
  • (string) $store_namespace The unique store namespace identifier.
    Required: No
    Default: null
  • (array) $state Optional. The array that will be merged with the existing state for the specified store namespace.
    Required: No
    Default: array()
Returns:
  • (array) The state for the specified store namespace. This will be the updated state if a $state argument was provided.
Defined at:
Codex:
Change Log:
  • 6.6.0

Gets and/or sets the initial state of an Interactivity API store for a given namespace.

If state for that store namespace already exists, it merges the new provided state with the existing one. The namespace can be omitted inside derived state getters, using the namespace where the getter is defined.


Source

function wp_interactivity_state( ?string $store_namespace = null, array $state = array() ): array {
	return wp_interactivity()->state( $store_namespace, $state );
}