So, I have following wpdb DELETE function:
$wpdb->delete( $table, array( 'sub_id' => $sub_id ) ????);
I want to delete rows where WHERE two conditions are met
For example, when sub_id = $sub_id AND date = $date, then I want to delete a row where these two conditions are available.
How do I change above function?
Thanks