How to correctly use = wp_enqueue_style with a CDN in wordpress?
- by Amod
My current code:
wp_enqueue_style( 'script-css', plugins_url( 'script/myscript.js', FILE ));
My goal:
Instead of loading the file from the plugins directory, I want to load above script file from http://mycloudfronturl.net/myscript.js
But somehow I am messing with either the quotes or while replacing the plugins_url. I am not a hard code php coder, so can someone tell me what to do please?
Thanks and Regards,
Amod