wp_interactivity_state( string $store_namespace, array $state = array() ): array

In this article

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

Description

If state for that store namespace already exists, it merges the new provided state with the existing one.

Parameters

$store_namespacestringrequired
The unique store namespace identifier.
$statearrayoptional
The array that will be merged with the existing state for the specified store namespace.

Default:array()

Return

array The state for the specified store namespace. This will be the updated state if a $state argument was provided.

Source

 * @return array The context for the specified store namespace.
 */
function wp_interactivity_get_context( ?string $store_namespace = null ): array {

Changelog

VersionDescription
6.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.