wp_print_script_tag()WP 5.7.0

Prints formatted <script> loader tag.

It is possible to inject attributes in the <script> tag via the wp_script_attributes filter. Automatically injects type attribute if needed.

Хуков нет.

Возвращает

null. Ничего (null).

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

wp_print_script_tag( $attributes );
$attributes(массив) (обязательный)
Key-value pairs representing <script> tag attributes.

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

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

Код wp_print_script_tag() WP 6.5.2

function wp_print_script_tag( $attributes ) {
	echo wp_get_script_tag( $attributes );
}