안녕하세요
차일드테마 적용 문제로 문의드립니다
사이트는 thebuilt테마를 사용중인데요
원래는 thebuilt 차일드테마를 만들어서 사용하던중
수정하면서 뭐가 문제가 발생했는지
워드프레스의 외모-테마 에보니까
망가진테마라고 하면서 어느순간 차일드테마가 없어져버려서 임시로 thebuilt부모테마로 테마변경해서 사용하면서 수정중인데요
혹시 테마 업데이트 되면 수정한사항이 다 없어지니까 다시 차일드테마로 적용하고싶은데요
차일드테마의 어떤부분이 문제라서 활성화 시키면 사이트가 완전히 백지가 되는지 궁금합니다
차일드테마로 변경하고 접속하면 아무것도 안나오는 흰 백지화면이 나옵니다
참고로 차일드테마의 style.css 와 functions.php의 소스를 아래와같이 첨부합니다
원래는 차일드테마로 잘 적용되었었는데 몇가지 수정하다보니 외모-테마에서 차일드테마가 망가졌다고 나왔었습니다
바쁘시겠지만 답변부탁드립니다
style.css==========
/*
Theme Name: Child of TheBuilt
Theme URI:
Description: Child theme based on themename
Author: Your Name
Version: 1.0
Template: thebuilt
*/
@import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);
*,body,html,body *{font-family:'Nanum Gothic';}
*{display: none;}
=======
function.php==========
<?php
add_action( 'wp_enqueue_scripts', 'thebuilt_child_enqueue_parent_styles' );
function thebuilt_child_enqueue_parent_styles() {
wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/css/bootstrap.css' );
wp_enqueue_style( 'themename-parent-style', get_template_directory_uri() . '/style.css', array('bootstrap'));
wp_enqueue_style( 'themename-child-style', get_stylesheet_directory_uri() . '/style.css', array('bootstrap'));
}
올려주신 파일내용을 똑같이해서 테스트를 해봤습니다만, 전혀 문제를 찾을 수 없었습니다.
정상적으로 차일드 테마 활성화까지 되네요.
다른 파일은 없이 style.css, function.php 파일만 만들어서 테스트해봤습니다.
그리고 워드프레스 테마에서 사용하는 파일은
function.php 이 파일이 아니라 functions.php 입니다.
차일드 테마를 새로 만들어서 해보셔야 할 듯하네요.