Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAndrew Folts
14,238 PointsMy custom functions work, but can't be called outside of functions.js?
I enqueued my scripts properly, and they work fine when called within the functions.js file.
However, if I try to call one from say index.html, I get an error in the console that says the function is undefined.
What could be a the reason for this?
Thanks!
2 Answers
fakrulislam
5,090 Pointsthe files you mentioned should be functions.php & index.php .
fakrulislam
5,090 PointsNo need to include scripts like that (<script src="">), instead enqueue it in functions.php
fakrulislam
5,090 PointsNo need to include scripts like that, instead enqueue in functions.php file
Andrew Folts
14,238 PointsAndrew Folts
14,238 PointsAh, I see. So I should enqueue it in functions.php, but also include it as:
<script src=''> etc...