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