Advertisement
afsarwebdev

To get default jquery of Wordpress

Aug 20th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. 1) To get wordpress default jquery keep the following codes in functions.php file
  2.  
  3. function afsarwebdev_general_jquery() {
  4. wp_enqueue_script('jquery');
  5. }
  6. add_action('init', 'afsarwebdev_general_jquery');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement