jQuery terug inladen in WordPress thema
PHP Code
php
function reregister_jquery()
{
wp_enqueue_script('jquery-core', includes_url('/js/jquery/jquery.min.js'), array(), null, false);
wp_enqueue_script('jquery-migrate', includes_url('/js/jquery/jquery-migrate.min.js'), array('jquery-core'), null, false);
wp_enqueue_script('jquery');
}