Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.06 KB | None | 0 0
  1.     /**
  2.      * Register and deregister scripts and stylesheets.
  3.      */
  4.     function theme_setup() {
  5.         wp_deregister_script( 'jquery' ); // Deregister the jquery version bundled with wordpress
  6.  
  7.         wp_register_script( 'jquery', 'https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js', array(), '2.2.4' );
  8.         wp_register_script( 'jquerydateformat', 'https://cdnjs.cloudflare.com/ajax/libs/jquery-dateFormat/1.0/jquery.dateFormat.min.js', array('jquery'), '2.2.4' );
  9.         wp_register_script( 'app', get_template_directory_uri() . '/js/app.js', array('jquery'), '1.0' );
  10.  
  11.         wp_enqueue_script( array(
  12.       'jquery',
  13.       'jquerydateformat',
  14.             'app'
  15.         ) );
  16.  
  17.         wp_register_style( 'fontawesome', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css', '4.4.0' );
  18.         wp_register_style( 'fonts', 'https://fonts.googleapis.com/css?family=Oswald|Open+Sans:400,400italic,700,700italic' );
  19.         wp_register_style( 'app', get_stylesheet_directory_uri() . '/css/app.css', '1.0' );
  20.  
  21.         wp_enqueue_style( array(
  22.             'fonts',
  23.             'fontawesome',
  24.             'app',
  25.         ) );
  26.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement