Xóa dữ liệu database WordPress

Để xóa 1 record trong database wordpress chúng ta thực hiện code sau:

Thêm đoạn code sau vào file functions.php của thêm đang sử dụng

global $wpdb;
$id = 1;
$table = $wpdb->prefix . 'contacts';
$delete = $wpdb->delete(
    $table,
    array( 'id' => $id ),
    array( '%d' )
);

Và các bạn có thể tham khảo một số tài liệu ngoài về databse của wordpress như:

Chúc các bạn học wordpress thành công!

Last updated