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 | 29 | 30 |
Tags
- Windows 10
- 줄바꿈 문자
- profile
- lsof
- vscode
- Mac
- tomcat
- 네트워크
- 단축키
- VirtualBox
- web.xml
- Eclipse
- JavaScript
- maVen
- resource
- find
- Source
- plugin
- Windows
- ssh
- bash
- port
- grep
- context
- netsh
- Quartz
- GIT
- import
- IntelliJ
- xargs
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