WP_View_Config_Data::get_data(): array

In this article

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only by core. It is listed here for completeness.

Returns the current configuration array.

Description

Deliberately private: filter callbacks receive the container, not the materialized configuration, so they cannot read the built result and become coupled to a specific configuration shape or schema version. Only the class itself reconciles the container back into an array.

Return

array The configuration.

Source

private function get_data() {
	return $this->config;
}

Changelog

VersionDescription
7.1.0Introduced.

User Contributed Notes

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