Back-end

backend

[WordPress] custom post_type 생성

1. post_type 워드프레스는 기본적으로 다섯가지 게시물 유형이 있다. (post, page, menu, attachement, revision). 개발을 진행하다보면 새로운 post_type 을 만들어야할 수 있는데 다음 코드를 이용한다. 조금 더 디테일하게 post_type 을 생성하고자 한다면,...

Continue reading...

Laravel 흔한 이슈

/bootstrap/cache directory must be present and writable 에러 Failed to clear cache. Make sure you have the appropriate permissions. storage/framework/cache/ 안에 data dir이 있는지 확인, 없으면 수동 생성 /cache/data 있으면 cache...

Continue reading...

Sequelize ORM 사용하기

1. Sequelize ORM DB 연결 테스트 2. 테이블 생성 / 정의 Sequelize 를 연결하면, 자동으로 로그가 기록된다. 테이블이 없다면 자동으로 생성시킨다는 로그를 볼 수 있다 🙂 로그를 남길 필요가 없다면 Sequelize...

Continue reading...