Guest User

Untitled

a guest
Feb 20th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <!-- START Auto Calc -->
  2. <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
  3. <script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
  4. <script src="<?php echo get_template_directory_uri(); ?>/js/jquery.ui.touch-
  5. punch.min.js"></script>
  6. <!-- END Auto Calc -->
  7.  
  8. <?php
  9.  
  10. /**
  11.  
  12. * @author Divi Space
  13.  
  14. * @copyright 2017
  15.  
  16. */
  17.  
  18. if (!defined('ABSPATH')) die();
  19.  
  20.  
  21.  
  22. function ds_ct_enqueue_parent() {
  23. wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
  24. wp_enqueue_style( 'jquery-ui-calc', 'https://code.jquery.com/ui/1.11.4/themes/redmond/jquery-ui.css' );
  25.  
  26. }
  27.  
  28. function ds_ct_loadjs() {
  29.  
  30. wp_enqueue_script( 'ds-theme-script', get_stylesheet_directory_uri() . '/ds-script.js', []);
  31.  
  32. }
  33.  
  34. add_action( 'wp_enqueue_scripts', 'ds_ct_enqueue_parent' );
  35.  
  36. add_action( 'wp_enqueue_scripts', 'ds_ct_loadjs' );
  37.  
  38. include('login-editor.php');
  39.  
  40. ?>
  41.  
  42. wp_enqueue_script( 'ds-theme-script', get_stylesheet_directory_uri() . '/ds-script.js',
  43.  
  44. array( 'jquery' )
  45.  
  46. );
  47.  
  48. wp_enqueue_script( 'jquery-ui-touch-script', get_stylesheet_directory_uri() . '/jquery.ui.touch-punch.min.js', []);
Add Comment
Please, Sign In to add comment