Skip to content

Instantly share code, notes, and snippets.

@iiiBird
Last active August 29, 2015 14:16
Show Gist options
  • Save iiiBird/543a7986901602178042 to your computer and use it in GitHub Desktop.
Save iiiBird/543a7986901602178042 to your computer and use it in GitHub Desktop.
Подключить скрипты
<?php
function my_scripts_method() {
wp_deregister_script('jquery');
wp_register_script( 'jquery', '//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js', false, false, true );
wp_register_script( 'bootstrap', get_template_directory_uri() . '/js/bootstrap.min.js', false, false, true );
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'bootstrap');
}
add_action( 'wp_enqueue_scripts', 'my_scripts_method' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment