워드프레스에 자바스크립트 코드 적용하는 방법

  1. 워드프레스 파일 매니저같은 파일관리 프로그램을 설치한다
  2. child-theme을 만든다
  3. child-theme폴더의 root 경로에 custom.js 파일을 추가한다
  4. 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' );
?>

By dororok

Leave a Reply

Your email address will not be published. Required fields are marked *