我尝试在wordpress表中更新。但我不能。怎么了?
我正在使用的代码是以下代码:
$wpdb->update( $wpdb->membership, array( 'status' => "token", 'transaction_id' => $resid ), array( "code", $code) );
答案 0 :(得分:0)
我使用这种方法并且工作了!
$wpdb->query("UPDATE $wpdb->membership SET status = 'token' ,transaction_id = '" . $resid . "' WHERE code = '" . $code . "' LIMIT 1");