
Untitled
By: a guest on
Aug 6th, 2012 | syntax:
None | size: 0.95 KB | hits: 11 | expires: Never
load-scripts in wp-admin theme options file, wrong order, how to change it
// De scripts enkel voor admin
if (is_admin()){
wp_register_script( 'bubble', NHP_OPTIONS_URL.'js/bubble.js');
wp_enqueue_script('bubble');
}
}
add_action('init', 'register_js');
<script type='text/javascript' src='http://localhost/wordpress/wp-admin/load-scripts.php?c=0&load=jquery,utils,farbtastic&ver=3.4.1'></script>
<script type='text/javascript' src='http://localhost/wordpress/wp-content/themes/newtheme/options/js/bubble.js?ver=3.4.1'></script>
<script type='text/javascript' src='http://localhost/wordpress/wp-admin/load-scripts.php?c=0&load=utils,farbtastic&ver=3.4.1'></script>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js?ver=3.4.1'></script>
<script type='text/javascript' src='http://localhost/wordpress/wp-content/themes/newtheme/options/js/bubble.js?ver=3.4.1'></script>