How do I enqueue a script in a child theme?
How do I enqueue a script in a child theme? How to Enqueue Scripts into Child Theme in Genesis Framework add_action( ‘wp_enqueue_scripts’, ‘crunchify_enqueue_script’ ); function crunchify_enqueue_script() { wp_enqueue_script( ‘follow’, get_stylesheet_directory_uri() . ‘//cdn.crunchify.com/js/follow.js’, array( ‘jquery’ ), ”, true ); How do I add a JavaScript to a child theme in WordPress? Enqueue may be an unfamiliar […]