- 워드프레스 파일 매니저같은 파일관리 프로그램을 설치한다
- child-theme을 만든다
- child-theme폴더의 root 경로에 custom.js 파일을 추가한다
- functions.php 파일에 아래와 같이 코드를 추가한다
<?php
// enload custom.js file
function my_custom_scripts() {
wp_enqueue_script( 'custom-js', get_stylesheet_directory_uri() . '/custom.js', array( 'jquery' ),'',true );
}
add_action( 'wp_enqueue_scripts', 'my_custom_scripts' );
?>