wp_inline_script_attributes

wp_inline_script_attributes

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_inline_script_attributes') is found 1 times:

  • /wp-includes/script-loader.php line 2921
    2917
    2918
    2919
    2920
    2921
    2922
    2923
    2924
    2925
    2926
    2927
         *                           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.
         */
        $attributes = apply_filters( 'wp_inline_script_attributes', $attributes, $data );
     
        return sprintf( "<script%s>%s</script>\n", wp_sanitize_script_attributes( $attributes ), $data );
    }
     
    /**
     * Prints an inline script tag.