웹서핑 중 긁어온 CSS 등을 모아놓으려고하는데 컴퓨터에 정리하자니 찾기 힘들다. 그래서 블로그에 커스텀 포스트 타입을 추가하는 방법을 알아보자. CPT 추가 커스텀 포스트 타입 = Custom Post Type = CPT functions.php function create_post_types() { register_post_type( ‘Code’, array( ‘labels’ => array( ‘name’ => ‘Code’, ‘singular_name’ => ‘Code’, ‘all_items’ => ‘Code 샘플 모으기’, ), ‘public’ => true, ‘show_ui’ => true, ‘show_in_admin_bar’ => false, ‘supports’ => array( ‘title’, ‘editor’, ‘author’, ‘thumbnail’, ‘excerpt’, ‘comments’, ‘revisions’ ), ‘taxonomies’ => array( ‘category’, ‘post_tag’ ), ‘show_in_rest’ => true,…