I\'m trying to use the wp_register_script and wp_enqueue_script FUNCTION on WordPress to enqueue a script, which has two attributes: \"integrity\" and \"crossorigin\".
N
You can add a CDN with integrity with Crossorigin by using add_action :
function add_jquery(){ echo ''; } add_action( 'wp_head', 'add_jquery' );