WP_Scripts::print_extra_script( string $handle, bool $display = true ): bool|string|void

In this article

Prints extra scripts of a registered script.

Parameters

$handlestringrequired
The script’s registered handle.
$displaybooloptional
Whether to print the extra script instead of just returning it.

Default:true

Return

bool|string|void Void if no data exists, extra scripts if $display is true, true otherwise.

Source

public function print_extra_script( $handle, $display = true ) {
	$output = $this->get_data( $handle, 'data' );
	if ( ! $output ) {
		return;
	}

	if ( ! $display ) {
		return $output;
	}

	wp_print_inline_script_tag( $output, array( 'id' => "{$handle}-js-extra" ) );

	return true;
}

Changelog

VersionDescription
3.3.0Introduced.

User Contributed Notes

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