Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 6th, 2012  |  syntax: None  |  size: 0.95 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. load-scripts in wp-admin theme options file, wrong order, how to change it
  2. // De scripts enkel voor admin  
  3. if (is_admin()){
  4.             wp_register_script( 'bubble', NHP_OPTIONS_URL.'js/bubble.js');
  5.             wp_enqueue_script('bubble');
  6.         }
  7.     }  
  8.     add_action('init', 'register_js');
  9.        
  10. <script type='text/javascript' src='http://localhost/wordpress/wp-admin/load-scripts.php?c=0&load=jquery,utils,farbtastic&ver=3.4.1'></script>
  11. <script type='text/javascript' src='http://localhost/wordpress/wp-content/themes/newtheme/options/js/bubble.js?ver=3.4.1'></script>
  12.        
  13. <script type='text/javascript' src='http://localhost/wordpress/wp-admin/load-scripts.php?c=0&load=utils,farbtastic&ver=3.4.1'></script>
  14. <script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js?ver=3.4.1'></script>
  15. <script type='text/javascript' src='http://localhost/wordpress/wp-content/themes/newtheme/options/js/bubble.js?ver=3.4.1'></script>