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