자식 테마에서 스크립트와 스타일을 올바르게 큐잉하는 방법은 무엇입니까?
내 프로젝트 중 하나에서 부모 테마와 자식 테마를 만들었습니다. 아래처럼 부모 테마에 CSS와 JavaScript를 넣었습니다. function project_necessary_scripts() { //Stylesheets wp_register_style( 'bootstrap-css', get_template_directory_uri() .'/css/bootstrap.min.css' ); wp_register_style( 'bootstrap-map', get_template_directory_uri() .'/css/bootstrap.css.map' ); wp_register_style( 'project-css', get_stylesheet_uri() ); wp_enqueue_style( 'bootstrap-css' ); wp_enqueue_style( 'bootstrap-map' ); wp_enqueue_style( 'project-css' ); //JavaScripts wp_register_script( 'modernizr-js', get_template_directory_uri() .'/js/modernizr-2.8.3.min.js', array(), '2.8.3' ); …