Xóa dữ liệu database WordPress
global $wpdb;
$id = 1;
$table = $wpdb->prefix . 'contacts';
$delete = $wpdb->delete(
$table,
array( 'id' => $id ),
array( '%d' )
);
Last updated
global $wpdb;
$id = 1;
$table = $wpdb->prefix . 'contacts';
$delete = $wpdb->delete(
$table,
array( 'id' => $id ),
array( '%d' )
);
Last updated