Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- Mac
- maVen
- import
- tomcat
- Windows
- ssh
- GIT
- grep
- context
- Windows 10
- Eclipse
- JavaScript
- find
- Quartz
- 줄바꿈 문자
- lsof
- resource
- bash
- IntelliJ
- profile
- 네트워크
- port
- vscode
- xargs
- Source
- 단축키
- plugin
- netsh
- web.xml
- VirtualBox
Archives
- Today
- Total
develog
[wordpress] rest api response 내보내기 본문
function api_response($code, $body) {
$data = array(
'code' => $code,
'body' => $body
);
return rest_ensure_response(new WP_REST_Response($data, $code));
}
Comments