Categories
News

adding jquery to wordpress

jQuery is already in wordpress so if you need to use it, there is no need to pull it in from elsewhere.
Use:
wp_enqueue_script(‘jquery’);
to access jQuery. However, you will not be able to use $(). The right way is to

Leave a Reply