WP_Scripts::get_inline_script_datapublicWP 6.3.0

Gets data for inline scripts registered for a specific handle.

Method of the class: WP_Scripts{}

No Hooks.

Returns

String. Inline script, which may be empty string.

Usage

global $wp_scripts;
$wp_scripts->get_inline_script_data( $handle, $position );
$handle(string) (required)
Name of the script to get data for. Must be lowercase.
$position(string)
Whether to add the inline script before the handle or after.
Default: 'after'

Changelog

Since 6.3.0 Introduced.

WP_Scripts::get_inline_script_data() code WP 6.9.1

public function get_inline_script_data( $handle, $position = 'after' ) {
	$data = $this->get_data( $handle, $position );
	if ( empty( $data ) || ! is_array( $data ) ) {
		return '';
	}

	/*
	 * Print sourceURL comment regardless of concatenation.
	 *
	 * Inline scripts prevent scripts from being concatenated, so
	 * sourceURL comments are safe to print for inline scripts.
	 */
	$data[] = sprintf(
		'//# sourceURL=%s',
		rawurlencode( "{$handle}-js-{$position}" )
	);

	return trim( implode( "\n", $data ), "\n" );
}