WP_Dependencies::get_data( string $handle, string $key ): mixed

In this article

Get extra item data.

Description

Gets data associated with a registered item.

Parameters

$handlestringrequired
Name of the item. Should be unique.
$keystringrequired
The data key.

Return

mixed Extra item data (string), false otherwise.

Source

public function get_data( $handle, $key ) {
	if ( ! isset( $this->registered[ $handle ] ) ) {
		return false;
	}

	if ( ! isset( $this->registered[ $handle ]->extra[ $key ] ) ) {
		return false;
	}

	return $this->registered[ $handle ]->extra[ $key ];
}

Changelog

VersionDescription
3.3.0Introduced.

User Contributed Notes

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