Tagged: enfold, javascript, slider
Hi!
I’m looking for help on how to add this http://codepen.io/ace/pen/BqEer Javascript to one of my pages.
Since I’m using the Enfold theme I thought I might ask here how to best implement it into the theme.
Best regards,
Hey tommyfo!
Please go to Appearance > Editor and open Functions.php file and find
// wp_register_script( 'wp-mediaelement', $template_url.'/js/mediaelement/mediaelement-and-player.min.js', 'jquery', "1", true);
and add following right below it
wp_enqueue_script( 'custom-js', $template_url.'/js/custom.js', array('jquery'), 1, true );
Save your file inside wp-content\themes\enfold\js folder with name custom.js
Regards,
Yigit