반응형
[워드프레스] jQuery is not define
워드프레스로 제이쿼리 코드 삽입시 코드가 작동 오류가 있을 수 있다.
썸네일에 해당되는 에러가 뜨게 되는데 해당 오류가 있다면 제이쿼리를 사용할 수 없습니다.
에러코드느 개발자 도구에서 확인이 가능합니다.
※워드프레스에서는 $가 아닌 jQuery를 사용해서 작업을 해야 합니다.
해결방법. function.php 에 코드 삽입하여 JQuery 추가하기
외모 -> editor에서 function.php 파일을 찾아 삽입해주면 됩니다.
혹은 ftp로 파일을 다운받아서 수정한 후에 업로드 해도 됩니다.
function add_new_jquery ()
{
//https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js
wp_deregister_script ( 'jquery-core');
wp_register_script ( 'jquery-core', "https://code.jquery.com/jquery-3.5.1.min.js", array (), '3.5.1');
wp_deregister_script ( 'jquery');
wp_register_script ( 'jquery', "https://code.jquery.com/jquery-3.5.1.min.js", array (), '3.5.1');
wp_enqueue_script ( 'jquery');
}
add_action ( 'wp_enqueue_scripts', 'add_new_jquery');
반응형
'웹언어 > 워드프레스' 카테고리의 다른 글
워드프레스 블로그 준비하기 #1 (0) | 2023.01.11 |
---|