Created
March 8, 2017 03:42
-
-
Save Jamp/b15ca336ef2580f7b5bc87c93d56e903 to your computer and use it in GitHub Desktop.
Eliminar problemas con diferentes versiones de jQuery en Wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Eliminar cualquier jQuery para solo usar el del tema | |
function resolve_conflict_jquery() { | |
wp_deregister_script('jquery'); | |
wp_register_script('jquery', get_template_directory_uri() . '/js/jquery.min.js', false, null, true); | |
wp_enqueue_script('jquery'); | |
} | |
add_action('wp_enqueue_scripts', 'resolve_conflict_jquery'); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment