Advertisement
mogaj

user_team.js.1

Jul 23rd, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Php
  2. -----
  3. <?php
  4. /*
  5. Plugin Name: User Team Details
  6. Plugin URI:
  7. Description: User entered team details.
  8. Version: 0.1
  9. */
  10. add_action('wp_enqueue_scripts', 'user_team_scripts');
  11. add_action('admin_enqueue_scripts', 'user_team_scripts');
  12. function user_team_scripts() {
  13.   wp_register_script('user_teams', plugins_url('js/user_teams.js', __FILE__),array("jquery"));
  14. }
  15.  
  16.  
  17. user_team.js
  18. ---------------
  19. jQuery(function($){
  20.   /* Start */
  21.  
  22.   console.log('hello');
  23.  
  24.   /* End   */
  25. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement