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 | 31 |
Tags
- bash
- xargs
- Quartz
- Eclipse
- web.xml
- plugin
- 단축키
- Windows
- tomcat
- Mac
- context
- maVen
- VirtualBox
- 줄바꿈 문자
- lsof
- vscode
- Windows 10
- Source
- grep
- GIT
- JavaScript
- profile
- IntelliJ
- netsh
- 네트워크
- import
- port
- resource
- find
- ssh
Archives
- Today
- Total
develog
[wordpress] $wpdb 본문
// %s (string)
// %d (integer)
// %f (float)
// like % -> like %%
$wpdb->prepare
// select
$wpdb->get_results // multi row, multi column
$wpdb->get_row // one row, multi column
$wpdb->get_col // multi row, one column
$wpdb->get_var // one value (one row, one column)
// insert, update, delete
$wpdb->query
$query = $wpdb->prepare(
"INSERT INTO $wpdb->postmeta ( post_id, meta_key, meta_value ) VALUES ( %d, %s, %s )",
10,
$metakey,
$metavalue
);
$wpdb->query($query);
Comments