Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- //wp_enqueue_scripts => init
- add_action('init', 'load_Myscript');
- function load_Myscript() {
- if (!is_admin()) {
- // loading wp-includes/js/jquery/jquery.js
- // wp_enqueue_script('jquery');
- // removing WordPress default jquery script
- wp_deregister_script('jquery');
- //wp_register_script('jquery', 'http://code.jquery.com/jquery-1.11.0.min.js');
- //wp_enqueue_script('jquery');
- // bloginfo('template_url') vs get_bloginfo('template_url') => http://localhost/wordpress/wp-content/themes/myThemeName/
- // wp_register_script( $handle, $src, $dependencies, $ver, $in_footer ); $in_footer <= true
- wp_register_script('jquery', get_bloginfo('template_url').'/dist/js/jquery.js');
- wp_enqueue_script('jquery');
- //wp_register_script('bootstrap', 'http://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js');
- //wp_enqueue_script('bootstrap');
- wp_register_script('bootstrap', get_bloginfo('template_url').'/dist/js/bootstrap.js', array('jquery'), '', true);
- wp_enqueue_script('bootstrap');
- wp_register_script('myCode', get_bloginfo('template_url').'/dist/js/myCode.js', array('jquery'), '', true);
- wp_enqueue_script('myCode');
- }
- }
- //
- //if ( function_exists('register_sidebar') )
- // register_sidebar(array(
- // 'before_widget' => '',
- // 'after_widget' => '',
- // 'before_title' => '<h3>',
- // 'after_title' => '</h3>',
- //));
- ?>
- // myCode.js
- $(function() {
- $("#bt2").click(function(){
- alert("HI");
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment