wp_inline_script_attributes
Filters attributes to be added to a script tag.
Использование
add_filter( 'wp_inline_script_attributes', 'wp_kama_inline_script_attributes_filter', 10, 2 ); /** * Function for `wp_inline_script_attributes` filter-hook. * * @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 $data Inline data. * * @return array */ function wp_kama_inline_script_attributes_filter( $attributes, $data ){ // filter... return $attributes; }
- $attributes(array<string, string|bool>)
- 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. - $data(строка)
- Inline data.
Список изменений
| С версии 5.7.0 | Введена. |
Где вызывается хук
wp_inline_script_attributes
wp-includes/script-loader.php 3034
$attributes = apply_filters( 'wp_inline_script_attributes', $attributes, $data );