Thursday 7 June 2018

Remove default jquery from WordPress

WordPress themes comes with a default jquery if you want to remove that jquery then write following code in functions.php
if (!is_admin())
{
add_action("wp_enqueue_scripts", "ce_enqueue_scripts");
}
function ce_enqueue_scripts()
{
wp_deregister_script('jquery');
}

For more help contact here WordPress Expert

No comments:

Post a Comment