How to enqueue scripts in WordPress from CDN?

后端 未结 1 612
别跟我提以往
别跟我提以往 2020-12-13 06:20

I am trying to replicate a pen from codepen for which I have to load 3 script files from CDN and one from the server.

What is the correct syntax to load the scripts

相关标签:
1条回答
  • 2020-12-13 07:06

    In your functions.php, using wp_register_script() and wp_enqueue_script()

    CSS

    wp_register_style( 'Font_Awesome', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css' );
    wp_enqueue_style('Font_Awesome');
    

    JS

    wp_register_script( 'jQuery', 'https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js', null, null, true );
    wp_enqueue_script('jQuery');
    

    Your case

    wp_register_script( 'jQuery', 'https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js', null, null, true );
    wp_enqueue_script('jQuery');
    wp_register_script( 'TweenMax', 'https://cdnjs.cloudflare.com/ajax/libs/gsap/1.18.2/TweenMax.min.js', null, null, true );
    wp_enqueue_script('TweenMax');
    wp_register_script( 'Slick', 'https://cdn.jsdelivr.net/jquery.slick/1.5.9/slick.min.js', null, null, true );
    wp_enqueue_script('Slick');
    
    0 讨论(0)
提交回复
热议问题