Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

Schalte das jQuery Migrate Script ab

<?php
/**
* Dequeue jQuery Migrate Script in WordPress.

*/
if ( ! function_exists( 'evolution_remove_jquery_migrate' ) ) :

function evolution_remove_jquery_migrate( &$scripts) {
    if(!is_admin()) {
        $scripts->remove( 'jquery');
        $scripts->add( 'jquery', false, array( 'jquery-core' ), '1.12.4' );
    }
}
add_filter( 'wp_default_scripts', 'evolution_remove_jquery_migrate' );
endif;
Comment

PREVIOUS NEXT
Code Example
Javascript :: Das komplette JavaScript in den Footer laden 
Javascript :: save canvas from console 
Javascript :: how we can use pagination in angular material and spring boot 
Javascript :: Logical Assignment Operator null coalescing 
Javascript :: how get value of datePicker in react 
Javascript :: javasript vetical menu cog 
Javascript :: create array, fill with spaces, convert to string and concat 
Javascript :: multi-line string shorthand javascript 
Javascript :: reactRender 
Javascript :: chrome extension get current tab 
Javascript :: array min value in vmware_vro 
Javascript :: linux pupperteer 
Javascript :: javascript variable without value 
Javascript :: react native paper touchable ripple 
Javascript :: best browser for programmers 
Javascript :: javascript react store component as function 
Javascript :: appolo query data in angular graphql 
Javascript :: Implementing cascades in mongoose 
Javascript :: drag and drop pic using hooks pure js 
Javascript :: Private slots are new and can be created via Instance and static private fields 
Javascript :: javascript intersection recursion 
Javascript :: filter state based on text field react 
Javascript :: socket cheatsheet 
Javascript :: get all keys of nested object json data javascript 
Javascript :: Get client or user ip address in react using axios 
Javascript :: js hide modal event listener name 
Javascript :: what is render in react native 
Javascript :: maxscript saveMaxFile 
Javascript :: js plugin for drop down with images 
Javascript :: vue ignore not used error 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =