Advertisement
Guest User

Untitled

a guest
Sep 1st, 2014
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. /**
  3. * Enqueue scripts and styles.
  4. */
  5. function wp_shaper_plugin_init() {
  6.  
  7. if (!is_admin()) {
  8.  
  9.  
  10.  
  11.  
  12. }
  13.  
  14. }
  15. add_action('init', 'wp_shaper_plugin_init');
  16.  
  17.  
  18. /** adding style sheet ***/
  19.  
  20. function work_project_scripts() {
  21.  
  22. wp_enqueue_style( 'style', plugins_url( '/css/style.css', __FILE__ ));
  23.  
  24.  
  25.  
  26. wp_enqueue_script('jquery');
  27.  
  28. wp_register_script ( 'work_project_showcase', plugins_url( '/js/jquery.aw-showcase.min.js', __FILE__ ) , array('jquery'), '20120206', true );
  29. wp_enqueue_script( 'work_project_showcase' );
  30.  
  31.  
  32. wp_register_script ( 'work_project_active',plugins_url( '/js/active.js', __FILE__ ), array('jquery'), '20120206', true );
  33. wp_enqueue_script( 'work_project_active' );
  34.  
  35. wp_register_script ( 'work_project_custom_js_extra', plugins_url( '/js/extra.js', __FILE__ ) , array('jquery'), '20120206', true );
  36. wp_enqueue_script( 'work_project_custom_js' );
  37.  
  38.  
  39.  
  40. }
  41. add_action( 'wp_enqueue_scripts', 'work_project_scripts' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement