Cập nhật dữ liệu database WordPress
$data = array(
'name' => 'Võ Quang Huy',
'email' => 'huykira@gmail.com',
'phone' => '0908888888',
'title' => 'Hỏi đáp',
'content' => 'Mình cần làm website, bạn có thể báo giá cho mình được không!',
'date' => current_time( 'mysql' )
);
global $wpdb;
$id = 1;
$table = $wpdb->prefix . 'contacts';
$update = $wpdb->update(
$table,
$data,
array('id' => $id)
);Last updated