functions.php
/**
* WPが用意したjQueryを読み込まない
*/
add_action('wp_print_scripts', 'deregister_jquery');
function deregister_jquery()
{
if(!is_admin())
{
wp_deregister_script('jquery');
}
}
Go to list of users who liked
More than 5 years have passed since last update.
/**
* WPが用意したjQueryを読み込まない
*/
add_action('wp_print_scripts', 'deregister_jquery');
function deregister_jquery()
{
if(!is_admin())
{
wp_deregister_script('jquery');
}
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked