Advertisement
firoze

// For Wordpress Jaquery using (functions.php)

Oct 27th, 2014
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1.  
  2. function my_scripts_method() {
  3.  wp_register_script( 'jquery', 'http://code.jquery.com/jquery-1.9.1.js');
  4.  wp_enqueue_script( 'jquery' ); }
  5. add_action('wp_enqueue_scripts', 'my_scripts_method');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement