wp_get_inline_script_tag( string $javascript, array $attributes = array() )
Wraps inline JavaScript in <script>
tag.
Description
It is possible to inject attributes in the <script>
tag via the ‘wp_script_attributes’ filter.
Automatically injects type attribute if needed.
Parameters
- $javascript
-
(Required) Inline JavaScript code.
- $attributes
-
(Optional) Key-value pairs representing
<script>
tag attributes.Default value: array()
Return
(string) String containing inline JavaScript code wrapped around <script>
tag.
Source
File: wp-includes/script-loader.php
function wp_get_inline_script_tag( $javascript, $attributes = array() ) {
/**
* Filters attributes to be added to a script tag.
*
* @since 5.7.0
*
* @param array $attributes Key-value pairs representing `<script>` tag attributes.
* Only the attribute name is added to the `<script>` tag for
* entries with a boolean value, and that are true.
* @param string $javascript Inline JavaScript code.
*/
$attributes = apply_filters( 'wp_inline_script_attributes', $attributes, $javascript );
$javascript = "\n" . trim( $javascript, "\n\r " ) . "\n";
return sprintf( "<script%s>%s</script>\n", wp_sanitize_script_attributes( $attributes ), $javascript );
}
Changelog
Version | Description |
---|---|
5.7.0 | |
CP-2.0.0 Remove JavaScript type declaration. | Introduced. CP-2.0.0 Remove JavaScript type declaration. |