wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_print_script_tag › WordPress Function

Seit5.7.0
Veraltetn/v
wp_print_script_tag ( $attributes )
Parameter:
  • (array) $attributes Key-value pairs representing `<script>` tag attributes.
    Erforderlich: Ja
Definiert in:
Codex:

Prints formatted `<script>` loader tag.

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


Quellcode

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