ALL
functions.php 파일 내용 추가 // GET FEATURED IMAGE function zeein_get_featured_image($post_ID) { $post_thumbnail_id = get_post_thumbnail_id($post_ID); if ($post_thumbnail_id) { $post_thumbnail_img = wp_get_attachment_image_src($post_thumbnail_id, 'thumbnail'); return $post_thumbnail_img[0]; } } // ADD NEW COLUMN function zeein_columns_head($defaults) { // 일자 전에 추가 할때 $ㅜnew = array(); $defaults['featur..
wp-content/themes 폴더로 이동해 부모테마(twentyfifteen) 폴더를 복사, 붙혀넣기 한 후 폴더명을 'twentyfifteen_child' 수정(폴더 이름에 공백 없어야 함)twentyfifteen-child 폴더의 functions.php 파일의 내용을 모두 삭제하고 저장(여러 함수가 있는데 같은 이름이 부모 테마에 있으므로 충돌이 일어나기 때문)style.css 파일 열고 아래와 같이 수정/* Theme Name: Twenty Fifteen Child Theme URI: https://cloudfolder.co.kr Author: ZZIN Author URI: https://cloudfoler.co.kr Version:1. 0 Description: Shopping mall Li..