Advertisement
Guest User

Untitled

a guest
Aug 18th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4. Plugin Name: Oglasi
  5. Plugin URI:
  6. Description: Custom post type "Oglasi".
  7. Version: 1.0
  8. Author: Dragi
  9. Author URI:
  10. License: GPLv2
  11. */
  12.  
  13. function james_adds_to_the_head() {
  14. wp_register_script( 'add-bx-js', plugin_dir_url( __FILE__ ) . 'js/filter-oglasi.js', array('jquery'),'',true );
  15. }
  16.  
  17. add_action( 'wp_enqueue_scripts', 'james_adds_to_the_head' );
  18.  
  19. jquery(document).ready(function() {
  20.  
  21. console.log("MAIN IS LOADED");
  22. alert("Dragi");
  23. });
  24.  
  25. function james_adds_to_the_head() {
  26. wp_register_script( 'add-bx-js', plugin_dir_url( __FILE__ ) . 'js/filter-oglasi.js', array('jquery'),'',true );
  27. wp_enqueue_script( 'add-bx-js' );
  28. }
  29.  
  30. add_action( 'wp_enqueue_scripts', 'james_adds_to_the_head' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement