Removed extra parentheses

This commit is contained in:
Mike Francis 2014-03-25 09:49:29 +00:00
parent 2f81e919ff
commit 12770ca6bd
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ add_filter( 'post_comments_feed_link', 'remove_comments_rss' );
function theme_scripts() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', ( '//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js' ), false, '1.10.2', true);
wp_register_script( 'jquery', '//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js', false, '1.10.2', true);
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'script', get_stylesheet_directory_uri() . '/js/script.js', array( 'jquery' ), null, true );
}