how to add jquery to wordpress

I think I found your problem. In your header.php file you’ve not put wp_head() and also on your footer.php you’ve missed wp_footer(). Where actually the scripts and style get hooked. Please add those wp_head() and wp_footer() to header.php and footer.php respectively. If you’re confused how and where you in those files you need to add … Read more

Is wp_mail plugin territory?

While wp_mail() is not exactly forbidden in a theme, it is very likely misplaced there. The purpose of a theme is presentation. It should not change existing data, and it should always be easy to replace. That’s the reason why contact forms, polls, shops, tracking and similar functionality is pure plugin territory. There is no … Read more

Uncaught Reference error in Retina.js

It sounds like it might be an issue with the way the distributed version of the script is compiling. I found this issue reported on their Github repo that could be related. Try using the minified version (retina.min.js) included in the download zip package. Remember to update your script enqueue path if you’re using a … Read more