wp_print_script_tag()
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.
No Hooks.
Returns
null. Nothing (null).
Usage
wp_print_script_tag( $attributes );
- $attributes(required)
- .
Changelog
| Since 5.7.0 | Introduced. |
wp_print_script_tag() wp print script tag code WP 7.0
function wp_print_script_tag( $attributes ) {
echo wp_get_script_tag( $attributes );
}