WP_Scripts::print_extra_script()publicWP 3.3.0

Prints extra scripts of a registered script.

Метод класса: WP_Scripts{}

Хуков нет.

Возвращает

true|false|Строку|null. Void if no data exists, extra scripts if $display is true, true otherwise.

Использование

global $wp_scripts;
$wp_scripts->print_extra_script( $handle, $display );
$handle(строка) (обязательный)
The script's registered handle.
$display(true|false)
Whether to print the extra script instead of just returning it.
По умолчанию: true

Список изменений

С версии 3.3.0 Введена.

Код WP_Scripts::print_extra_script() WP 6.1.1

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

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

	printf( "<script%s id='%s-js-extra'>\n", $this->type_attr, esc_attr( $handle ) );

	// CDATA is not needed for HTML 5.
	if ( $this->type_attr ) {
		echo "/* <![CDATA[ */\n";
	}

	echo "$output\n";

	if ( $this->type_attr ) {
		echo "/* ]]> */\n";
	}

	echo "</script>\n";

	return true;
}