How to correctly use = wp_enqueue_style with a CDN in wordpress?

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

Read More

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?

Related posts

Leave a Reply

1 comment

  1. Use enqueue_script instead.
    Sample example:

    wp_register_script('some_script', 'http://anywhereyouwant.com');
    wp_enqueue_script('some_script');