WP_Interactivity_API::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 current state for the specified store namespace. This will be the updated state if a $state argument was provided.

Source

 * This is only available during directive processing, otherwise it is `null`.
 *
 * @since 6.6.0
 * @var array<array<mixed>>|null
 */
private $context_stack = null;

/**
 * Representation in array format of the element currently being processed.
 *
 * This is only available during directive processing, otherwise it is `null`.
 *

Changelog

VersionDescription
6.5.0Introduced.

User Contributed Notes

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