Showing all 0 results
No job found.
/** * Move core jQuery to the footer on front-end. */ add_action('wp_enqueue_scripts', function(){ if ( is_admin() ) return; // Core jQuery ko footer me re-register wp_deregister_script('jquery'); wp_register_script('jquery', includes_url('js/jquery/jquery.min.js'), array(), '3.7.1', true); // 'true' = footer wp_enqueue_script('jquery'); }, 99);