W3cubDocs

/WordPress

WP_Script_Modules::print_import_map()

Prints the import map using a script tag with a type=”importmap” attribute.

Source

public function print_import_map() {
	$import_map = $this->get_import_map();
	if ( ! empty( $import_map['imports'] ) ) {
		wp_print_inline_script_tag(
			wp_json_encode( $import_map, JSON_HEX_TAG | JSON_HEX_AMP ),
			array(
				'type' => 'importmap',
				'id'   => 'wp-importmap',
			)
		);
	}
}

Changelog

Version Description
6.5.0 Introduced.

© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_script_modules/print_import_map