[워드프레스] 자식 테마 만들기 (child theme)
필그램
·2019. 6. 17. 07:01
자식테마를 만드는 이유
테마가 업그레이드 될 경우, 테마를 수정한 부분이 없어진다.
따라서 자식 테마를 만들면 업그레이드가 되어도 수정한부분 즉, 푸터, 헤드 등의 디자인을 유지할 수있다.
자식테마 만드는 부분
아래의 세가지를 수정해야 한다.
- The child theme directory 만들기
- style.css
- functions.php
1) wp-content/themes 아래로 이동한뒤
abc라는 테마가 있다면, '-child' 를 추가한 abc-child라는 디렉토리를 만든다.
2) style.css 스타일에 아래를 추가한다
/* Theme Name: abc Child
Theme URI: http://example.com/abc-child/ Description: abc Child Theme Author: John Kim Author URI: http://example.com Template: abc Version: 1.0.0 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready Text Domain: abc-child */
내용은 자신에 맞게 수정한다.
3)
'프로그래밍 > 웹프로그래밍' 카테고리의 다른 글
[Javascript] Li 태그요소를 array (배열)로 넣기 (0) | 2019.06.17 |
---|---|
부트스트랩(BootStrap)이란 (0) | 2019.06.17 |
[jQuery] 자주쓰는 제이쿼리 함수 (모음) (1) | 2017.11.18 |
[jQuery] 제이쿼리 Ajax 사용하기 (0) | 2017.11.17 |
[jQuery] 제이쿼리 애니메이션 (0) | 2017.11.16 |