wp_script_attributes

wp_script_attributes

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_script_attributes') is found 1 times:

  • /wp-includes/script-loader.php line 2818
    2814
    2815
    2816
    2817
    2818
    2819
    2820
    2821
    2822
    2823
    2824
         * @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.
         */
        $attributes = apply_filters( 'wp_script_attributes', $attributes );
     
        return sprintf( "<script%s></script>\n", wp_sanitize_script_attributes( $attributes ) );
    }
     
    /**
     * Prints formatted `<script>` loader tag.