theonlychase
7/17/2017 - 3:54 PM

Add jQuery to Wordpress

Add jQuery to Wordpress

Add jQuery via CDN

function custom_scripts() {
    wp_enqueue_script( 'custom-script', 'https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js');
}
add_action( 'wp_enqueue_scripts', 'custom_script' );