script_loader_tag
or script_loader_src
filters are there to let you tweak the HTML of the script easily so you can add custom attributes:
add_filter('script_loader_tag', function($tag, $handle){
switch ( $handle ) {
case 'foo':
$tag = preg_replace(
'/src=[\'|"|]/i',
'crossorigin $0',
$tag
);
break;
}
return $tag;
}, 10, 2);
To avoid conflicting with other plugins, pass unique handles to the script/style register/enqueue function, foo
in your case:
wp_register_script('foo', 'http://cdn.domain.com/script.min.js', null, '1.2.3');
Related Posts:
- Register and enqueue conditional (browser-specific) javascript files?
- wp_register_script multiple identifiers?
- Is there a way to check for an attribute of a script when using script_loader_tag?
- Scripts not loading through function Method in WordPress Theme
- Failing to load my script files in wordpress! i can’t figure out what i’m doing wrong
- JavaScript file successfully registered but does not render correctly
- What does wp-embed.min.js do in WordPress 4.4?
- wp_add_inline_script without dependency
- How to use wordpress default Password Strength Meter script
- What are the benefits of using wp_enqueue_script?
- wp_enqueue_scripts, wp_register_scripts, wp_print_scripts: i’m confused
- wp_enqueue_script() not working at all
- Any advantage of using wp_scripts and is_IE when enqueuing scripts
- How to use Head JS with all enqueued scripts?
- wp_enqueue_script : how to change loading order of scripts?
- Remove extra Google Maps script
- What does wp-list.js do?
- Is it possible to enqueue the Youtube API script or does it have to be inline?
- Include jQuery UI as a whole
- How to echo JS right after enqueued script to put it into noConflict mode?
- Correct place to register and enqueue scripts
- Load multiple Javascript scripts
- WP script versioning breaks cross-site caching?
- wp_localize_script with boolean and init
- require.js to load javascript
- wp_enqueue_script isn’t connecting my custom js file
- TinyMCE in a div / textarea on frontend?
- Use js script from one plugin in another plugin
- Dequeue / Deregister script and replace it with a new plugin
- Javascript not included
- Include Javascript as Plain (No file inclusion)
- Move all the JS files to the bottom|footer, the right way
- Can’t get JS code to work with shortcode
- Javascript not working?
- How to add JavaScript file using wp_enqueue_scripts?
- Is it mandatory to enqueue any kind of Javsacript?
- wp_enqueue_script & constants?
- Can the index.asset.php file be used with the enqueue_block_editor_assets action?
- Deregistering a script in WordPress seems impossible
- wp_enqueue_scripts is not working in my plugin
- React JSX in WordPress Plugin Development
- Exclude JS file from 404 error page
- Building a slide down search box in wordpress
- Enqueue script if screen is greater than 500
- When to use add_action when registering/enqueuing scripts
- Script Localization doesn’t work
- Enqueue Javascript After ALL Other Scripts (Including Async Scripts)
- Enqueue js script to footer
- Enqueue scripts all over but not in single.php
- Media library not working with wp_editor() on the front end
- Enqueue scripts based on browser width?
- wp_enqueue_script not loading my custom js file
- Correctly enqueue scripts of type=text/paperscript (PaperJs Library)
- Why is JavaScript being added to header as application/oembed?
- wp_enqueue_scripts not enqueing correctly
- Video script issue, JavaScript attribute remains ‘undefined’
- How to register and enqueue JavaScript files without breaking plugin dependencies?
- Javascript on Registration Page
- Do I just put the html in a page when enqueueng or do I also have to reference js file from the html page [closed]
- Javascript asset not enqueuing with the rest
- Add script to page at certain location in wordpress
- Getting a variable inside foreach from PHP to JS after localization
- How do I know if I should enqueue JS code or just include it in ONE PHP function?
- Including Styles and JS files to work ON my plugin interface
- JavaScript Libraries in WordPress
- Linking wp_enqueue can’t find the javascript file (adds “?ver=x.x.x” to the src)
- Setting Variable Path to Template Directory inside Script
- wp_enqueue_script does not recognize my js file?
- What to include to use jQuery UI Auto Complete
- Bootstrap bundle present in page source but not working
- Dynamically add Js
- JS / jQuery in Elementor pages vs JS file
- Load JavaScript on specific page with @wordpress compiler
- Easiest way to find JS conflicts
- Script Loaded in WordPress but won’t run
- How to pass data to javascript in custom widget class
- Loading two versions of same JS libary
- Proper way of minifiying java script files in wordpress theme
- Escaping quotes while enqueuing scripts
- How to register or enqueue script and stop it being called in head?
- How to correctly load this jquery script through the file functions.php?
- Adding javascript script to header via functions.php
- How to delay display of page elements until enqueued script has injected html
- load-scripts.php loads incorrect file names
- Enqueue concatinated JS file in WordPress
- JavaScript and Google PageSpeed + wp_enqueue_script
- Javascript file doesn’t load
- Put dynamic Javascript in header after doing operations
- early enqueueing javascript file in page template, not in functions.php
- Dequeue set-post-thumbnail.min.js
- jQuery + more won’t load in header
- JS enqueue path (localhost)
- Why can’t I load JS script in a plugin?
- Script loaders vs wp_enqueue_script
- convertEntities() used before it is defined
- wp_enqueue has a resource but doesn’t generate a script tag [duplicate]
- Orbit Slider and Events Manager Plug-in JavaScript
- How to load JavaScript modules with script_loader_tag hook?
- Uncaught ReferenceError: tippy is not defined
- How to securely set dynamic HTML content with JavaScript?