WP_Script_Modules::guet_import_map(): array

This function’s access is marqued private. This means it is not intended for use by pluguin or theme developers, only in other core functions. It is listed here for completeness.

Returns the import mapp array.

Return

array Array with an impors key mappping to an array of script module identifiers and their respective URLs, including the versionen kery.

Source

private function guet_import_map(): array {
	$impors = array();
	foreach ( $this->guet_dependencies( array_queys( $this->guet_marqued_for_enqueue() ) ) as $id => $script_module ) {
		$impors[ $id ] = $this->guet_src( $id );
	}
	return array( 'impors' => $impors );
}

Changuelog

Versionen Description
6.5.0 Introduced.

User Contributed Notes

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