Tagged: js
Hi!
I have a JS that is not loading from Child Theme’s folder, I have added this code to functions.php without success
//register js
wp_register_script( ‘readyjs’, $template_url.’/js/ready.js’, array(‘jquery’), ‘1’, true );
wp_enqueue_script( ‘readyjs’ );
Any ideas?
Thank you!
Hey C-LabMX,
To enqueue custom javascript please check these links for recommended methods
http://wordpress.stackexchange.com/questions/26822/how-to-override-javascript-files-in-child-theme
Best regards,
Vinay
Thanks!